Api
Authorization
apiKey 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
Default
50Range
value <= 100cursor?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
}