API Authentication

Authentication is facilitated by providing Authorization: Bearer xyz header in each request, where xyz is your API access token.

curl -X <GET/POST/DELETE> \
-H "Authorization: Bearer YOUR_API_TOKEN" \
...

See the Getting Started page to see how to generate your API access token.

See the API Reference for more information on using the API.

❗️

Security

It is essential that you secure your token and not expose it to others. Treat it as you would your application password. If you believe your key has been compromized, regenerate it immediately.