The Sequin Management API allows you to programmatically control Sequin resources like sinks, HTTP endpoints, and backfills.The API is intended for developers who want to manage Sequin resources from their own applications. This is useful for:
Setting up sinks and backfills for your customers
Automatically backfilling a sink, for instance to re-populate a cache destination
All API requests require authentication using a Bearer token. The token can be found in the Sequin Console under the “Manage account” section.Include the token in the Authorization header:
Copy
Ask AI
Authorization: Bearer YOUR_API_TOKEN
An example cURL request with Bearer token authorization:
Copy
Ask AI
curl -X GET "https://api.sequinstream.com/api/sinks" \ -H "Authorization: Bearer YOUR_API_TOKEN"
The API uses standard HTTP status codes to indicate the success or failure of a request. See the errors documentation for details on error responses and handling.