Developer tools
OpenAI-compatible gateway at https://api.circuitnotion.com/v1. Need a key or credits first? Create a key or top up.
Testing ground
Paste an API key — we load models from GET /v1/models (same catalog Cline uses), then you can run a live chat completion against your wallet.
1curl "https://api.circuitnotion.com/v1/chat/completions" \
2 -H "Authorization: Bearer $CIRCUITNOTION_API_KEY" \
3 -H "Content-Type: application/json" \
4 -d '{"model":"circuit-2-turbo","messages":[{"role":"user","content":"Say hello in one short sentence."}]}'Response
Run a request to see the assistant reply, model, and token usage.