The Conductor API uses API keys to authenticate requests.

Your API keys carry many privileges, so be sure to keep them secure. Don’t share your secret API keys in publicly accessible areas such as GitHub, client-side code, and so forth.

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

Use your API key by setting it in the initial configuration of Conductor. The Node.js library then automatically sends this key in each request.

Example authenticated request
import Conductor from "conductor-node";
const conductor = new Conductor("{{YOUR_SECRET_KEY}}");

const endUsers = await conductor.endUsers.list();