Quick Start
- Get your API key from Settings → Developer Console
- Make your first request using the API key
- Explore the API using our reference documentation
Authentication
The G-Tateth API uses API key authentication. Include your API key in theAuthorization header:
Base URLs
- Production:
https://api.g-tateth.com - Staging:
https://staging-api.g-tateth.com - Development:
http://localhost:3001
Your First Request
Let’s list your conversations:Using the SDKs
We provide official SDKs for popular languages to make integration easier.JavaScript/TypeScript
Python
Rate Limits
Rate limits are applied per API key based on your plan:- Starter/Standard: 500 requests/hour
- Professional/Premium: 5,000 requests/hour
- Enterprise: 50,000 requests/hour
X-RateLimit-Limit: Your limitX-RateLimit-Remaining: Remaining requestsX-RateLimit-Reset: When the limit resets (Unix timestamp)
Error Handling
All errors follow this format:API_KEY_INVALID- Invalid API keyAPI_KEY_EXPIRED- API key expiredRATE_LIMIT_EXCEEDED- Rate limit exceededPERMISSION_DENIED- Insufficient permissionsTENANT_SUSPENDED- Tenant account suspended
Next Steps
- Read the API Reference
- Check out Webhooks Guide
- See Best Practices
- Explore SDK Documentation