Coming soon
Quickstart
Run your first decision in two minutes.
This capability is not live yet. The reference below describes how it works at launch. Join the waitlist to get Early Access.
1. Create an API key
Sign in, open Dashboard → API keys and create a key. Copy it: the full key is only shown once. Store it as an environment variable on your server, never in browser code.
export CLASSIFIERHUB_API_KEY="ch_live_..."2. Classify something
classify.sh
bashcurl https://classifierhub.com/v1/classify \
-H "Authorization: Bearer $CLASSIFIERHUB_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"input": "Hi, my card was charged twice this month",
"instructions": "Which team should handle this message?",
"options": { "billing": "Payments, refunds, invoices", "support": "Product help", "sales": "Buying questions" }
}'response.json
json{
"id": "5b8f...",
"object": "decision.classification",
"label": "billing",
"confidence": 0.93,
"probabilities": { "billing": 0.93, "support": 0.05, "sales": 0.02 },
"usage": { "credits": 1, "latency_ms": 430 },
"model": { "provider": "openrouter_decisions", "name": "typesafe/jev-1.13" }
}3. Use a template
Templates answer several questions at once for a single credit:
curl https://classifierhub.com/v1/decide \
-H "Authorization: Bearer $CLASSIFIERHUB_API_KEY" \
-H "Content-Type: application/json" \
-d '{ "template": "support-triage", "input": "We are locked out and have a demo in 2 hours" }'Next: read about decisions, browse the templates, or see the full API reference.