Prabloe Console

API keys

A key acts as the account it was created for. Keys call Prabloe from your own code, and a secret key is shown once, at creation.

Your plan

Evaluation access

Keys are unmetered while the public API is in evaluation. Nothing here is metered or charged yet.

Quickstart

Send your secret key as a bearer token. The request body is OpenAI-shaped, so most existing clients work by changing the base URL.

POST /api/v1/chat
curl https://www.prabloe.com/api/v1/chat \
  -H "Authorization: Bearer $PRABLOE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "feyn-o1",
    "messages": [
      { "role": "user", "content": "Explain gradient descent in two sentences." }
    ]
  }'

Set PRABLOE_API_KEY in your shell rather than pasting the key into the command — shell history is a place secrets get found.