Quickstart
Get a Drise API key and send your first GLM 5.2 request in 60 seconds.
1. Claim Beta Access
Go to platform.drise.ai/register and create an account. During the Beta program, no credit card is required.
2. Get your API key
In your workspace, open API Keys and create a new key. Store it as an environment variable:
export DRISE_KEY="sk-your-key-here"3. Send your first request
curl https://platform.drise.ai/v1/chat/completions \
-H "Authorization: Bearer $DRISE_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "drise-glm-5.2",
"messages": [{"role": "user", "content": "say hi from drise"}]
}'You will get a standard OpenAI-style JSON response.
4. List available models
Drise exposes five GLM 5.2 variants, all FP8-quantised:
curl https://platform.drise.ai/v1/models \
-H "Authorization: Bearer $DRISE_KEY"Available IDs:
| 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 |
See Models for guidance on which variant to pick.
5. Drop into your tool of choice
Drise works with any OpenAI-compatible client. See Client Guides for Cursor, Aider, Continue, Cline, and the official OpenAI SDKs.
Base URL
https://platform.drise.ai/v1Live usage
Token usage, active sessions, and request latency are visible live at stats.drise.ai.