AskPuck
Sign in

Docs

API

Same account. Same credits. Create a key in the dashboard, then call like OpenAI.

Endpoint

POST https://askpuck.app/v1/chat/completions

Authorization: Bearer sk-puck-…. Models: puck-cortex-1.2 (catalog cortex-1.2, preview) or puck-cortex-1.1 (catalog cortex-1.1, stable). Set stream to true if you want tokens as they arrive.

curl https://askpuck.app/v1/chat/completions \
  -H "Authorization: Bearer $PUCK_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "puck-cortex-1.2",
    "messages": [{"role": "user", "content": "Hello"}]
  }'

Limits

10 requests per second per account, all keys together. Same token prices as the app. Both models: 1M context, 256k max output. A call smaller than $0.0001 is free.