My App
Api
GET
/glossary-terms
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
limit?integer
Default50
Rangevalue <= 100
cursor?string

Response Body

application/json

curl -X GET "https://api.langrelay.com/v1/glossary-terms?projectId=string"
{
  "data": [
    {
      "id": "glossary_abc123",
      "projectId": "string",
      "sourceTerm": "dashboard",
      "translations": {
        "fr": "tableau de bord"
      },
      "createdAt": "2019-08-24T14:15:22Z"
    }
  ],
  "cursor": "string",
  "hasMore": true
}