Retrieve Account Details

GEThttps://api.vobiz.ai/api/v1/auth/me

Retrieves the complete account details including pricing tier information and authentication credentials.

Authentication: Requires Bearer Token (JWT). Pass your access token in the Authorization header.

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)
{
  "name": "Your Company Name",
  "email": "admin@yourcompany.com",
  "description": null,
  "id": "MA_SYQRLNIK",
  "auth_id": "hjzz7OuHHokStqvGKQWm35V1u0PBceHP",
  "is_active": true,
  "is_verified": false,
  "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_id": "1fa3db95-526a-4b5e-86a6-4bcd62ef31fa",
  "pricing_tier": {
    "id": "1fa3db95-526a-4b5e-86a6-4bcd62ef31fa",
    "name": "baseTier",
    "currency": "INR",
    "rate_per_minute": "0.4500",
    "billing_increment_seconds": 60,
    "minimum_duration_seconds": 0,
    "is_active": true,
    "is_default": true
  }
}

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.