Authentication
Authentication
Section titled “Authentication”Most /api/v1 endpoints require an API key. Create one in the Collingo web app under Settings → API keys. Copy the secret when it is shown — it is only displayed once.
Send the key on every authenticated request:
Authorization: Bearer <your-api-key>Example:
curl -sS https://collingo.app/api/v1/info \ -H "Authorization: Bearer <your-api-key>"Treat the API key like a password. Do not commit it to source control or share it in public channels.
Public endpoints
Section titled “Public endpoints”These endpoints do not require an API key:
| Method | Path | Docs |
|---|---|---|
GET | /api/v1/version | Get API version |
GET | /api/v1/locales | List locales |
GET /api/v1/info and all project, group, entry, translation, and export endpoints require a valid Bearer key.
Rate limits
Section titled “Rate limits”Authenticated /api/v1 requests are counted against your plan’s daily API request limit. When the limit is exceeded, the API rejects further requests until the quota resets. Check usage in the web app dashboard or under account settings.