The Sequin Management API uses HTTP Bearer Authentication.

You can generate an API token in the Sequin Console.

You’ll include your token in the header of your HTTP requests. For example, with a client such as curl, you can include your token by using the --header option:

# List all syncs
curl --request GET \
  --url https://api.sequin.io/v1/syncs \
  --header 'Authorization: Bearer YOUR_API_TOKEN'