Chat API
AI-powered clinical intelligence with AXIFI's 42-agent system
POST
/v1/chat/completionsCreate Chat Completion
Generate AI responses using AXIFI's 42-agent clinical system
Rate Limit
50/min
curl -X POST https://api.axifi.ai/v1/chat/completions \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"messages": [
{"role": "user", "content": "What are benefits of BPC-157 for gut health?"}
],
"model": "axifi-clinical-v1",
"temperature": 0.7,
"max_tokens": 1024
}'Response Format
id: string - Unique message identifier
content: array - Message content blocks
usage: object - Token usage (input, output)