Authentication
How to authenticate with the Reinx API
All API requests require authentication via API key or JWT token.
API Key Authentication
Include your API key in the X-API-Key header:
curl -H "X-API-Key: rx_live_your_key_here" \
https://api.reinx.ai/v1/agentsBase URL
https://api.reinx.ai/v1/All endpoints are versioned under /v1/. Breaking changes will be introduced under /v2/ without disrupting existing integrations.
Rate Limits
| Plan | Limit |
|---|---|
| Free | 100 requests/min |
| Pro | 1,000 requests/min |
| Enterprise | Custom |
Rate limit headers are returned on every response:
X-RateLimit-Limit— Your plan's limitX-RateLimit-Remaining— Remaining requestsX-RateLimit-Reset— When the limit resets (Unix timestamp)