Required headers on every request:
X-Auth-ID- Your account Auth IDX-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.
MA_XXXXXXXX. Treat your Auth Token like a password - anyone with both values can act on your account.
Making an authenticated request
cURL
/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-Tokenin 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.