PlatformPlayground

DEVELOPER WORKSPACE

Playground

Try a prompt. Inspect the response. Take it into your application.

Check service status
Single-turn request

Requests use your API credits and may be billed, including requests you cancel or that time out.

Response

glm-5.2-fp8

Ready when you are

Choose a model, enter your key and send a prompt. The actual model response will appear here.

Request code

cURL
curl https://b300.powerchampion.ai/v1/chat/completions \
  -H "Authorization: Bearer $POWERCHAMPION_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "model": "glm-5.2-fp8",
  "messages": [
    {
      "role": "user",
      "content": "Explain how an API works in two sentences."
    }
  ],
  "max_tokens": 512,
  "stream": false
}'