My App

Authentication

Secure your API requests

The HeyCalli API uses Bearer tokens for authentication. You must include your API Key in the Authorization header of every request.

Authentication Header

Authorization: Bearer YOUR_API_KEY

Example

curl -X POST https://api.heycalli.ai/v1/call \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ ... }'

On this page