Skip to main content
GET
/
v1
/
glossary
const result = await client.glossary.list({ page: 1, limit: 25 });

for (const term of result.data) {
  console.log(`${term.term} (${term.type})`);
}
{
  "data": [
    {
      "id": "term_abc123",
      "term": "Lasso AI",
      "type": "do_not_translate",
      "case_sensitive": true,
      "category": "brand",
      "translations": {},
      "created_at": "2025-03-01T10:00:00.000Z"
    }
  ],
  "pagination": { "page": 1, "limit": 25, "total": 12 }
}

Query parameters

page
integer
default:"1"
Page number for pagination.
limit
integer
default:"25"
Number of items per page (max 100).

Response

data
array
pagination
object
const result = await client.glossary.list({ page: 1, limit: 25 });

for (const term of result.data) {
  console.log(`${term.term} (${term.type})`);
}
{
  "data": [
    {
      "id": "term_abc123",
      "term": "Lasso AI",
      "type": "do_not_translate",
      "case_sensitive": true,
      "category": "brand",
      "translations": {},
      "created_at": "2025-03-01T10:00:00.000Z"
    }
  ],
  "pagination": { "page": 1, "limit": 25, "total": 12 }
}