API Authentication

Learn how to authenticate with the Orivela AI API

API Keys

All API requests require authentication using an API key. You can generate API keys from your dashboard settings.

Using API Keys

Include your API key in the request header:

Authorization: Bearer YOUR_API_KEY

Example Request

curl -X GET https://api.orivela.ai/v1/conversations \
  -H "Authorization: Bearer YOUR_API_KEY"

Rate Limits

API requests are rate-limited based on your plan:

  • Starter: 1,000 requests/hour
  • Professional: 5,000 requests/hour
  • Business: 20,000 requests/hour
  • Enterprise: Custom limits

Security Note: Never expose your API keys in client-side code or public repositories. Keep them secure and rotate them regularly.