Anthropic API
Base URL
text
https://logox.topAfter changing the Base URL, calls work the same way as the official Anthropic API.
Query Available Models
Query available models with the token under its current group:
bash
curl https://logox.top/v1/models \
-H "Authorization: Bearer sk-logox-your-key"Routes
text
POST /v1/messages
GET /v1/modelsExample
Model name:
text
claude-opus-4-6bash
curl https://logox.top/v1/messages \
-H "Authorization: Bearer $NEW_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "claude-opus-4-6",
"max_tokens": 1024,
"messages": [{"role": "user", "content": "Hello"}]
}'