Glossary
List glossary terms
Retrieve a paginated list of your glossary terms.
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})`);
}
result = client.glossary.list(page=1, limit=25)
for term in result["data"]:
print(f"{term['term']} ({term['type']})")
curl -X GET "https://hub.banditshq.com/api/v1/glossary?page=1&limit=25" \
-H "Authorization: Bearer lasso_..."
{
"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 number for pagination.
Number of items per page (max 100).
Response
Show Glossary term object
Show Glossary term object
Unique term identifier.
The original term.
do_not_translate, specific_translation, or context_dependent.Whether matching is case-sensitive.
Term category.
Map of language code to translated term.
ISO 8601 timestamp.
const result = await client.glossary.list({ page: 1, limit: 25 });
for (const term of result.data) {
console.log(`${term.term} (${term.type})`);
}
result = client.glossary.list(page=1, limit=25)
for term in result["data"]:
print(f"{term['term']} ({term['type']})")
curl -X GET "https://hub.banditshq.com/api/v1/glossary?page=1&limit=25" \
-H "Authorization: Bearer lasso_..."
{
"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 }
}
⌘I
const result = await client.glossary.list({ page: 1, limit: 25 });
for (const term of result.data) {
console.log(`${term.term} (${term.type})`);
}
result = client.glossary.list(page=1, limit=25)
for term in result["data"]:
print(f"{term['term']} ({term['type']})")
curl -X GET "https://hub.banditshq.com/api/v1/glossary?page=1&limit=25" \
-H "Authorization: Bearer lasso_..."
{
"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 }
}

