Authentication


The Conjointly API uses authentication tokens for each request that you create. To get started with API calls, you will first need to generate your API tokens on the Conjointly platform, as follows:

Log in to the Conjointly platform

Log into your existing Conjointly account to get started. If you do not have an account already, you can easily sign up for free.

Generate an access token

To create a new access token, simply:

  1. Navigate to the left hand side menu. Under Utilities, select Access Tokens
  2. Click the Create new API token button.
  3. On the pop-up, fill in the desired token name and click the Generate new API token to proceed.
Please save the generated token somewhere safe and accessible. For security reasons, you won't be able to view it again in your account. If you lose this token, you'll need to generate a new one.
Generate an API token

Deleting access tokens

To delete an unwanted access token:

  1. Navigate to the left hand side menu. Under Utilities, select Access Tokens
  2. Select the Revoke button to remove the API token.

How to authenticate your API calls

API calls are made to the api.conjoint.ly server via HTTPS. You will need to include a valid bearer token inside the Authorization header of each call.

"Authorization": `Bearer ${token}`

Next