Skip to content

Authentication

Every request to the BluAuto API needs your API key, sent as a Bearer token in the Authorization header.

Authorization: Bearer YOUR_API_KEY

Where to find your key

Your live API key is in the app under Admin → API Key (owner only). Copy it from there. The key is never shown on this public site.

Keep it private

Your API key grants access to verification and email finding on your account. Do not commit it to git, share it in screenshots, or paste it into public tools. If it leaks, rotate it.

Example

bash
curl https://app.bluauto.io/api/v1/verify \
  -X POST \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{"email":"john@acme.com"}'

A missing or wrong key returns 401 Unauthorized.

BluAuto