DEVELOPER WORKSPACE
Playground
Try a prompt. Inspect the response. Take it into your application.
Request code
cURLcurl 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
}'