API Overview
Tellexa API
Section titled “Tellexa API”Overview
Section titled “Overview”The Tellexa API enables programmatic access to your AI assistants, allowing you to:
- Send messages and receive responses
- Trigger assistant actions
- Manage integrations
- Access conversation history
- Build custom applications
API Preview
Section titled “API Preview”Base URL
Section titled “Base URL”https://api.tellexa.ai/v1Authentication
Section titled “Authentication”All API requests require authentication via API key or OAuth 2.0.
curl -H "Authorization: Bearer YOUR_API_KEY" \ https://api.tellexa.ai/v1/assistantsExample: Send a Message
Section titled “Example: Send a Message”curl -X POST https://api.tellexa.ai/v1/messages \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "assistant_id": "ast_abc123", "message": "What meetings do I have tomorrow?" }'Example Response
Section titled “Example Response”{ "id": "msg_xyz789", "assistant_id": "ast_abc123", "content": "You have 3 meetings tomorrow:\n\n1. 9:00 AM - Team standup (30 min)\n2. 11:00 AM - Client call with Acme (1 hour)\n3. 3:00 PM - Project review (45 min)", "created_at": "2026-02-06T10:30:00Z"}Planned Endpoints
Section titled “Planned Endpoints”| Endpoint | Method | Description |
|---|---|---|
/assistants | GET | List your assistants |
/assistants/{id} | GET | Get assistant details |
/messages | POST | Send a message |
/messages/{id} | GET | Get message details |
/conversations | GET | List conversations |
/integrations | GET | List connected integrations |
/webhooks | POST | Create a webhook |
Rate Limits
Section titled “Rate Limits”| Plan | Requests/min | Requests/day |
|---|---|---|
| Standard | 60 | 10,000 |
| Professional | 120 | 50,000 |
| Enterprise | Custom | Custom |
SDKs (Planned)
Section titled “SDKs (Planned)”We’re developing official SDKs for:
- Python
- JavaScript/TypeScript
- Go
Early Access
Section titled “Early Access”Want early access to the API?
- Join the API waitlist
- Describe your use case
- We’ll reach out when API access is available
Questions?
Section titled “Questions?”- 📧 Email: api@tellexa.ai
- 📚 Webhooks Documentation →
- 🔑 Authentication Guide →