Skip to main content
Every Vobiz REST API request is authenticated with two headers - there’s no OAuth flow, no token exchange, and no expiry to manage.
Required headers on every request:
  • X-Auth-ID - Your account Auth ID
  • X-Auth-Token - Your account Auth Token

Where to find your credentials

After signing in to the Vobiz Console, your Auth ID and Auth Token are displayed directly on the main dashboard. Copy both - you’ll pass them as headers on every API call.
Vobiz dashboard showing Auth ID, Auth Token, and account balance
Your Auth ID looks like MA_XXXXXXXX. Treat your Auth Token like a password - anyone with both values can act on your account.

Making an authenticated request

cURL
curl -X GET https://api.vobiz.ai/api/v1/auth/me \
  -H "X-Auth-ID: YOUR_AUTH_ID" \
  -H "X-Auth-Token: YOUR_AUTH_TOKEN"
A successful call to /auth/me returns your full account object, including verification status and pricing tier - a good way to confirm your credentials work before building further. See Retrieve Account Details for the full response shape. For the full error response format and all status codes, see Error Handling.

Security notes

  • Never expose X-Auth-Token in client-side code (browser JS, mobile apps). Route API calls through your own backend.
  • If a token is compromised, regenerate it from the Console dashboard immediately - the old token stops working as soon as you do.