Glossary
Access the financial glossary — categories and term definitions.
GET
/api/v1/knowledge/glossary/categoriesReturns all glossary categories.
Response
200 OKGET/api/v1/knowledge/glossary/categories
curl -X GET "https://api.gilito.ai/api/v1/knowledge/glossary/categories" \
-H "Authorization: Bearer YOUR_API_KEY"Try It
Example Response
{
"data": [
{
"id": "cat1-...",
"name": "Technical Analysis",
"slug": "technical-analysis",
"termCount": 25
},
...
]
}GET
/api/v1/knowledge/glossary/termsReturns all glossary terms.
Response
200 OKGET/api/v1/knowledge/glossary/terms
curl -X GET "https://api.gilito.ai/api/v1/knowledge/glossary/terms" \
-H "Authorization: Bearer YOUR_API_KEY"Try It
Example Response
{
"data": [
{
"id": "term1-...",
"term": "Moving Average",
"slug": "moving-average",
"definition": "A calculation used to analyze data points by creating a series of averages...",
"categoryId": "cat1-..."
},
...
]
}GET
/api/v1/knowledge/glossary/terms/:slugReturns a single glossary term by its URL slug.
Path Parameters
slugstringrequiredThe term slug (e.g., moving-average).
Response
200 OKGET/api/v1/knowledge/glossary/terms/:slug
curl -X GET "https://api.gilito.ai/api/v1/knowledge/glossary/terms/{slug}" \
-H "Authorization: Bearer YOUR_API_KEY"Try It
Example Response
{
"data": {
"id": "term1-...",
"term": "Moving Average",
"slug": "moving-average",
"definition": "A calculation used to analyze data points by creating a series of averages...",
"categoryId": "cat1-...",
"relatedTerms": ["exponential-moving-average", "simple-moving-average"]
}
}