Every request includes EOS methodology context from our knowledge base.
Powered by Claude with 200K context window and extended thinking capabilities.
API keys with scopes, rate limiting, and usage tracking.
Real-time streaming responses via Server-Sent Events.
Get up and running in under a minute
curl -X POST https://eosbot.ai/api/v1/chat \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "eosai-v1",
"messages": [
{"role": "user", "content": "What is a Level 10 Meeting?"}
]
}'Sign up and generate your API key from the dashboard settings.
Send a POST request to the chat endpoint with your message.
Receive AI responses powered by EOS methodology knowledge.
All endpoints use base URL: https://eosbot.ai/api
Click any endpoint to see full details, parameters, and code examples
Generate AI responses with EOS methodology knowledge built-in.
Create chat completion
Persistent multi-turn conversations with automatic history management.
Create conversation
List conversations
Get conversation
Send message
Delete conversation
Analyze documents and answer questions about their content.
Analyze document
Generate vector embeddings for semantic search and similarity.
Create embeddings
Discover available models and EOS knowledge namespaces.
List models
Monitor API usage and rate limits for your API key.
Get usage statistics
Choose the right model for your use case
Powered by Claude Sonnet 4.5. Best balance of speed and quality for EOS guidance.
Powered by Claude Haiku 4.5. Optimized for quick responses.
Powered by Claude Opus 4.5. Extended thinking for complex EOS scenarios.
All API requests require authentication via API key. Include your key in the Authorization header.
Include as Authorization: Bearer YOUR_KEY
Alternative: X-API-Key: YOUR_KEY
# Using Bearer token curl https://eosbot.ai/api/v1/chat \ -H "Authorization: Bearer eosai_sk_..." # Using X-API-Key header curl https://eosbot.ai/api/v1/chat \ -H "X-API-Key: eosai_sk_..."
API keys have per-minute and daily request limits
| Limit Type | Default | Header |
|---|---|---|
| Requests per minute | 60 | X-RateLimit-Remaining-RPM |
| Requests per day | 1,000 | X-RateLimit-Remaining-RPD |