Skip to Content
Explore the updated Linguolink documentation experience.

API Usage

Base URL

https://app.lingulink.com/api/v1

Authentication

Authorization: Bearer YOUR_API_KEY

Quick Test

curl -H "Authorization: Bearer YOUR_API_KEY" \ https://app.lingulink.com/api/v1/test

Export Example

curl -H "Authorization: Bearer YOUR_API_KEY" \ "https://app.lingulink.com/api/v1/export?project_id=YOUR_PROJECT_ID&language=en&format=json" \ -o ./locales/en.json

Common Endpoints

GET /api/v1/test GET /api/v1/export?project_id=...&language=en&format=json GET /api/v1/translations?project_id=... POST /api/v1/translations PUT /api/v1/translations/:id DELETE /api/v1/translations/:id

Error Handling Guidance

  • 401: invalid or missing key
  • 403: insufficient scope
  • 429: rate limit exceeded

Implement retry with exponential backoff for transient failures and rate limits.

For full endpoint details, use the interactive API docs at /api-docs.

Next Steps

Last updated on