API Authentication
All Sequen API endpoints require authentication. Authentication is performed using API keys passed in the HTTPAuthorization header as a Bearer token.
Finding Your API Key
You can find your API key in the Sequen Dashboard under Settings > API Keys.API keys are intended for server-to-server authentication only. Never expose your API key in client-side code (browsers, mobile apps) or commit it to version control. Store it securely in environment variables or secrets management systems on your backend servers.
Using the API Key
To authenticate your requests, include your API key in theAuthorization header as a Bearer token:
Request Header
YOUR_API_KEY with your actual Sequen API key.
Legacy Authentication Method
Older client versions may use theX-API-Key header for authentication:
Request Header
If you’re unsure which authentication method to use, please check with the Sequen team to determine the appropriate method for your integration.
Example Request
Here’s an example usingcurl to make an authenticated request (replace with a real endpoint later):
Example Curl Request
401 Unauthorized error.
