My App

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:

IDContextReasoning
drise-glm-5.21,000,000 tokensyes
drise-glm-5.2-fast1,000,000 tokensno
drise-glm-5.2-short200,000 tokensyes
drise-glm-5.2-short-fast200,000 tokensno
drise-visionGLM 5.2 with visionyes

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/v1

Live usage

Token usage, active sessions, and request latency are visible live at stats.drise.ai.

On this page