API Documentation
Integrate OOretz AI capabilities into your applications
🚀
Quick Start
Get up and running in minutes with our simple API
📚
Full Reference
Complete documentation for all endpoints
💡
Examples
Code samples in multiple languages
Authentication
All API requests require an API key. Include it in the Authorization header:
Authorization: Bearer YOUR_API_KEYBase URL
https://api.ooretz.com/v1Available Endpoints
POST
/chatSend a message and get an AI response
POST
/agents/{agent_id}/runExecute an AI agent task
GET
/aiList all available AI features
POST
/ai/{feature_id}Use a specific AI feature
Example Request
curl -X POST https://api.ooretz.com/v1/chat \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"message": "Explain quantum computing",
"model": "gpt-4"
}'Rate Limits
| Plan | Requests/min | Requests/day |
|---|---|---|
| Free | 10 | 100 |
| Pro | 60 | 10,000 |
| Enterprise | Unlimited | Unlimited |