Api reference
GET /v1/models
List the GLM 5.2 models available on the Drise platform.
GET https://platform.drise.ai/v1/models
Lists the model IDs your key can reach. Drise exposes five GLM 5.2 variants, all FP8-quantised. See Models for the full breakdown.
Headers
| Header | Required | Description |
|---|---|---|
Authorization | yes | Bearer <your_drise_key> |
Example request
curl https://platform.drise.ai/v1/models \
-H "Authorization: Bearer $DRISE_KEY"Example response
{
"object": "list",
"data": [
{
"id": "drise-glm-5.2",
"object": "model",
"owned_by": "drise"
},
{
"id": "drise-glm-5.2-fast",
"object": "model",
"owned_by": "drise"
},
{
"id": "drise-glm-5.2-short",
"object": "model",
"owned_by": "drise"
},
{
"id": "drise-glm-5.2-short-fast",
"object": "model",
"owned_by": "drise"
},
{
"id": "drise-vision",
"object": "model",
"owned_by": "drise"
}
]
}Model reference
| ID | Context | Reasoning |
|---|---|---|
drise-glm-5.2 | 1,000,000 tokens | yes |
drise-glm-5.2-fast | 1,000,000 tokens | no |
drise-glm-5.2-short | 200,000 tokens | yes |
drise-glm-5.2-short-fast | 200,000 tokens | no |
drise-vision | GLM 5.2 with vision | yes |
All variants are FP8-quantised.