1. Authorization: Bearer YOUR_API_KEY
  2. x-avido-app-id: UUID_OF_YOUR_APPLICATION

Retrieving Your API Key

  1. Log in to the Avido dashboard.
  2. Navigate to API Keys in your account settings.
  3. Copy the generated Bearer token.
  4. Always store this securely.

Retrieving Your Application ID

Every application within Avido has a unique UUID. In your Avido dashboard:

  1. Go to Applications.
  2. Select an application to see its details.
  3. Note the App ID (UUID).

Example Request

curl -X POST "https://api.avidoai.com/v0/ingest" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "x-avido-app-id: 310adba1-7cc0-4fa7-9e2b-8bd2fdf281b2" \
  -d '{"events": [...]}'

If either header is missing or invalid, you’ll receive a 401 or 403 error.