Authentication Methods
The Feed API supports two authentication methods: API keys (for server-to-server integrations) and M2M Bearer tokens (for OAuth-based flows).API Key (Recommended)
Pass your API key in theX-API-Key header:
M2M Bearer Token
For OAuth-based server integrations, use a Bearer token in theAuthorization header:
Required Scopes
| Operation | Required Scope |
|---|---|
| Read feeds | feed:read |
| Manage webhooks | feed:write |
| View analytics | feed:read |
feed:read by default. To create webhook subscriptions, enable feed:write in the key settings.
Creating API Keys
- Go to Settings → API Keys in your workspace
- Click New API Key
- Select the
feed:readand/orfeed:writescopes - Copy the key — it is shown only once
Error Responses
| Status | Meaning |
|---|---|
401 Unauthorized | Missing or invalid API key |
403 Forbidden | Valid key but insufficient scope |
429 Too Many Requests | Rate limit exceeded (60 req/min) |