The Conductor API uses API keys to authenticate requests.

Your secret API keys carry many privileges, so be sure to keep them secure. Do not share your secret API keys in publicly accessible areas such as Git, client-side code, or a public website.

You must make all API calls over HTTPS. Calls that you make over plain HTTP will fail. API requests without authentication will also fail.

Authentication to the API is performed with bearer auth. Provide your API key in the Authorization header.

Example authenticated request
curl -X GET https://api.conductor.is/v1/end_users \
     -H "Authorization: Bearer {{YOUR_SECRET_KEY}}"