Api reference
Authentication
Learn how to authenticate with our API.
Authentication
To use our API, you'll need to authenticate your requests. We use API keys to authenticate requests.
Finding Your API Key
You can find your API key in your account settings. If you don't have an account, you'll need to create one first.
Making Authenticated Requests
To make an authenticated request, you'll need to include your API key in the Authorization header of your request. The value of the header should be Bearer YOUR_API_KEY.
curl "https://api.example.com/v1/users" \
-H "Authorization: Bearer YOUR_API_KEY"Keeping Your API Key Secure
Your API key is a secret. You should treat it like a password and never share it with anyone. If you accidentally expose your API key, you should regenerate it immediately.