Authentication

Authentication is based on API keys, which are specific to a given organisation + project. Use the x-api-key header to specify your API key for a given operation:

const result = await fetch('https://api.carbonapi.io/api/example', {
 headers: {
  'x-api-key': 'my-api-key',
  'Content-Type': 'application/json'
 }
}

See the API Reference for more information.