Get Glossary
Retrieve glossary details.
Endpoint
GET /api/v3/glossaries/{id}
Response
{
"id": 123,
"name": "Medical Terminology",
"language": "en",
"description": "Common medical terms",
"entries_count": 50,
"created_at": "2025-01-17T10:00:00Z",
"updated_at": "2025-01-17T15:30:00Z"
}
Examples
cURL
curl https://api.scriptix.io/api/v3/glossaries/123 \
-H "Authorization: Bearer YOUR_API_KEY"
Python
response = requests.get(
'https://api.scriptix.io/api/v3/glossaries/123',
headers={'Authorization': 'Bearer YOUR_API_KEY'}
)
glossary = response.json()
print(f"Name: {glossary['name']}")
print(f"Entries: {glossary['entries_count']}")