Skip to main content

1. Choose the API surface

Partner workspaces use /api/v1. Creator workspaces use /api/creators/v1. A key belongs to one account type and cannot be moved between them.

2. Authenticate

Pass the key as a Bearer token:
Partner
Creator
Successful list responses contain data and pagination. Keep following pagination.nextCursor until pagination.hasMore is false.

3. Handle errors and limits

All errors use an error string. Treat 401 as an invalid or expired key, 429 as backpressure, and retry server failures only when the operation is safe. See rate limits and idempotency.
Start with a read endpoint and a small limit. Add write access only after your integration safely stores secrets and handles retries.