Skip to content

OpenAI Chat Completions

Hyper supports the OpenAI Chat Completions API.

Endpoint: POST https://hyper.charm.land/v1/chat/completions

bash
curl https://hyper.charm.land/v1/chat/completions \
  -H "Authorization: Bearer sk-hyper-xxxxxxxxxxxxxxxxxxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "deepseek-v4-pro",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'

Set "stream": true for streaming responses.