Skip to main content

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/agents

Base 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

PlanLimit
Free100 requests/min
Pro1,000 requests/min
EnterpriseCustom

Rate limit headers are returned on every response:

  • X-RateLimit-Limit — Your plan's limit
  • X-RateLimit-Remaining — Remaining requests
  • X-RateLimit-Reset — When the limit resets (Unix timestamp)