API Docs

ClauDeal API Documentation

One API key, three endpoints. Point your existing SDK or client at the ClauDeal base URL and keep everything else.

Base URLhttps://api.claudeal.net
OpenAI SDK Base URLhttps://api.claudeal.net/v1
Default authAuthorization: Bearer sk-...
Quickstart

First request in three steps

Create a key, pick a model, run one curl. That's the whole integration.

  1. Create an API key in the console.
  2. Pick an endpoint: OpenAI-compatible clients use /v1/chat/completions, Anthropic-native clients use /v1/messages.
  3. Run the example below with your key.
quickstart.sh
curl https://api.claudeal.net/v1/chat/completions \ -H "Authorization: Bearer sk-..." \ -H "Content-Type: application/json" \ -d '{ "model": "claude-sonnet-4-6", "messages": [{ "role": "user", "content": "Write a haiku about latency." }] }'