Documentation Index
Fetch the complete documentation index at: https://docs.omniakey.com/llms.txt
Use this file to discover all available pages before exploring further.
Use o host sem sufixo para ferramentas Anthropic-native:
Claude Code e o Anthropic SDK adicionam /v1/messages automaticamente.
Messages
POST /v1/messages é o endpoint Anthropic Messages. Use ids de modelos Claude
nesta superfície.
curl https://api.omniakey.com/v1/messages \
-H "Authorization: Bearer your-omniakey-api-key" \
-H "anthropic-version: 2023-06-01" \
-H "Content-Type: application/json" \
-d '{
"model": "claude-opus-4-8",
"max_tokens": 1024,
"messages": [{"role": "user", "content": "Refactor this function for readability."}]
}'
Claude Code
export ANTHROPIC_BASE_URL="https://api.omniakey.com"
export ANTHROPIC_AUTH_TOKEN="your-omniakey-api-key"
claude