Authentication

'X-Api-Key': '<my-api-key>'

All of your calls must contain your API key by using the 'X-Api-Key'header attribute.

CODE EXAMPLE

A javascript code example showing how to include your API Key.

$.ajax({
    ...
    headers: {
      'Content-Type': 'application/json',
      'X-Api-Key': 'my-api-key'
    },
    ...
});

Last updated