Retrieve Account Details
GET
https://api.vobiz.ai/api/v1/auth/meRetrieves the complete account details including pricing tier information and authentication credentials.
Authentication Required:
- • X-Auth-ID: Your account ID (e.g., {Auth_ID})
- • X-Auth-Token: Your account Auth Token
- • Content-Type: application/json
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"Arguments
No arguments need to be passed.
Response Example
Success Response (200 OK)
{
"id": "MA_XXXXXX",
"api_id": "api_v1_XXXXXX",
"name": "Acme Corporation",
"email": "admin@company.com",
"phone": "+1234567890",
"type": "MASTER",
"auth_id": "YOUR_AUTH_ID",
"auth_secret": "sk_live_XXXXXXXXXXXXXXXXXXXX",
"auth_token_expire_time": "2025-11-22T03:16:12Z",
"description": null,
"company": "Acme Corp LLC",
"address": "123 Tech Lane",
"city": "Innovation City",
"state": "California",
"zip_code": "90001",
"country": "US",
"timezone": "America/Los_Angeles",
"account_type": "PREPAID",
"postpaid": false,
"auto_recharge": true,
"enabled": true,
"is_active": true,
"is_verified": true,
"is_trial_account": false,
"role": "ADMIN",
"carrier_type": "VOIP",
"customer_type": "ENTERPRISE",
"credit_limit": "100.00",
"cps_limit": 10,
"concurrent_calls_limit": 50,
"base_cps_limit": 5,
"base_concurrent_calls_limit": 25,
"purchased_cps": 5,
"purchased_concurrent_calls": 25,
"risk_rating": "LOW",
"risk_status": "NORMAL",
"ip_auth_enabled": false,
"ip_whitelist_rules": [],
"allow_aws_ips": true,
"features": {
"call_queue": true,
"transcription_enabled": true
},
"pricing_tier_id": "1fa3db95-526a-4b5e-86a6-4bcd62ef31fa",
"pricing_tier": {
"id": "1fa3db95-526a-4b5e-86a6-4bcd62ef31fa",
"name": "baseTier",
"description": "Standard enterprise pricing plan",
"currency": "INR",
"rate_per_minute": "0.4500",
"billing_increment_seconds": 60,
"minimum_duration_seconds": 0,
"is_active": true,
"is_default": true
},
"created_at": "2025-10-17T08:51:00.552579Z",
"updated_at": "2025-10-22T03:16:11.815251Z",
"last_login": "2025-10-22T03:16:12.901344Z"
}Pricing Tier: Each account is associated with a pricing tier that determines the per-minute call rate and billing increments. The pricing_tier object provides complete details about your account's billing configuration.