My App
Api
GET
/translations
x-api-key<token>

API key from the LangRelay dashboard. Org-level keys can access all projects; project-scoped keys are restricted to one project.

In: header

Query Parameters

projectId*string
language*string
page?string

Filter by page path

limit?integer
Default50
Rangevalue <= 100
cursor?string

Response Body

application/json

curl -X GET "https://api.langrelay.com/v1/translations?projectId=string&language=string"
{
  "data": [
    {
      "id": "translation_xyz789",
      "segmentId": "string",
      "sourceText": "Hello world",
      "language": "fr",
      "translatedText": "Bonjour le monde",
      "source": "ai",
      "confidence": 0.95,
      "approved": true,
      "createdAt": "2019-08-24T14:15:22Z",
      "updatedAt": "2019-08-24T14:15:22Z"
    }
  ],
  "cursor": "string",
  "hasMore": true
}