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 URL
https://api.claudeal.netOpenAI SDK Base URL
https://api.claudeal.net/v1Default auth
Authorization: Bearer sk-...Quickstart
First request in three steps
Create a key, pick a model, run one curl. That's the whole integration.
- Create an API key in the console.
- Pick an endpoint: OpenAI-compatible clients use /v1/chat/completions, Anthropic-native clients use /v1/messages.
- Run the example below with your key.
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." }]
}'
