Skip to main content
GET
/
api
/
v1
/
account
/
{auth_id}
/
balance
/
{currency}
Get balance
curl --request GET \
  --url https://api.vobiz.ai/api/v1/account/{auth_id}/balance/{currency} \
  --header 'X-Auth-ID: <api-key>' \
  --header 'X-Auth-Token: <api-key>'
{
  "id": "aabbccdd-1234-5678-90ab-cdef12345678",
  "account_id": "MA_XXXXXXXX",
  "currency": "INR",
  "balance": 23906.83,
  "reserved_funds": 0,
  "promotional_balance": 0,
  "promotional_reserved_balance": 0,
  "available_balance": 23906.83,
  "credit_limit": 1000,
  "is_postpaid": true,
  "credit_limit_type": "soft",
  "low_balance_threshold": 50,
  "status": "active",
  "created_at": "2026-01-19T18:39:15.050543Z",
  "updated_at": "2026-05-11T06:59:32.802705Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.vobiz.ai/llms.txt

Use this file to discover all available pages before exploring further.

Get Transactions

GET https://api.vobiz.ai/api/v1/account/{auth_id}/transactions
Returns a list of transactions for a specific account.
Authentication required:
  • X-Auth-ID - Your account Auth ID
  • X-Auth-Token - Your account Auth Token
  • Content-Type: application/json

Request

cURL
curl --location 'https://api.vobiz.ai/api/v1/Account/YOUR_AUTH_ID/transactions?limit=50&offset=0' \
--header 'X-Auth-ID: YOUR_AUTH_ID' \
--header 'X-Auth-Token: YOUR_AUTH_TOKEN' \
--header 'Accept: application/json'

Response

JSON Response
{
    "auth_id": "MA_XXXXXX",
    "total": 125,
    "page": 1,
    "per_page": 50,
    "total_pages": 3,
    "transactions": [
        {
            "id": "txn_6883ee37-4085-465f-97c2-e1c67c50aab9",
            "auth_id": "MA_XXXXXX",
            "balance_id": "bal_a84cd3a6-21f4-4b4c-99f2-3d069cb65459",
            "type": "debit",
            "amount": 0.9,
            "currency": "INR",
            "description": "Stream session (70s)",
            "reference": "cdr_e565c2de-975c-4ba5-b115-44b1042cd397",
            "reference_type": "cdr",
            "status": "completed",
            "processed_at": "2025-12-08T09:38:06.923988Z",
            "created_at": "2025-12-08T09:38:06.923988Z",
            "updated_at": "2025-12-08T09:38:06.923988Z"
        },
        {
            "id": "txn_6aa3bf01-9158-4f1a-9980-8b3416b57e5a",
            "auth_id": "MA_XXXXXX",
            "balance_id": "bal_a84cd3a6-21f4-4b4c-99f2-3d069cb65459",
            "type": "debit",
            "amount": 0.45,
            "currency": "INR",
            "description": "Stream session (30s)",
            "reference": "cdr_f876d3ef-1234-5678-90ab-cdef12345678",
            "reference_type": "cdr",
            "status": "completed",
            "processed_at": "2025-12-08T09:40:15.123456Z",
            "created_at": "2025-12-08T09:40:15.123456Z",
            "updated_at": "2025-12-08T09:40:15.123456Z"
        }
    ],
    "summary": {
        "total_transactions": 125,
        "total_debit": 150.75,
        "total_credit": 500.00,
        "net_amount": 349.25,
        "by_reference_type": [
            {
                "reference_type": "cdr",
                "total_debit": 140.25,
                "total_credit": 0.00,
                "count": 110
            },
            {
                "reference_type": "payment",
                "total_debit": 0.00,
                "total_credit": 500.00,
                "count": 1
            },
            {
                "reference_type": "refund",
                "total_debit": 10.50,
                "total_credit": 0.00,
                "count": 14
            }
        ]
    }
}

Get Balance

GET https://api.vobiz.ai/api/v1/account/{auth_id}/balance/{currency}
Returns the balance for a specific account and currency.
Authentication required:
  • X-Auth-ID - Your account Auth ID
  • X-Auth-Token - Your account Auth Token
  • Content-Type: application/json

Request

cURL
curl --location 'https://api.vobiz.ai/api/v1/Account/YOUR_AUTH_ID/balance/INR' \
--header 'X-Auth-ID: YOUR_AUTH_ID' \
--header 'X-Auth-Token: YOUR_AUTH_TOKEN' \
--header 'Accept: application/json'

Response

JSON Response
{
    "id": "aabbccdd-1234-5678-90ab-cdef12345678",
    "account_id": "MA_XXXXXXXX",
    "currency": "INR",
    "balance": 1000.00,
    "reserved_funds": 0,
    "promotional_balance": 0,
    "promotional_reserved_balance": 0,
    "available_balance": 1000.00,
    "credit_limit": 1000,
    "is_postpaid": true,
    "credit_limit_type": "soft",
    "low_balance_threshold": 50,
    "status": "active",
    "created_at": "2026-01-19T18:39:15.050543Z",
    "updated_at": "2026-05-11T06:59:32.802705Z"
}

Authorizations

X-Auth-ID
string
header
required

Your Vobiz account Auth ID

X-Auth-Token
string
header
required

Your Vobiz account Auth Token

Path Parameters

auth_id
string
required

Your account Auth ID

Example:

"MA_XXXXXX"

currency
string
required

Currency code (e.g. INR, USD)

Example:

"INR"

Response

200 - application/json

Account balance

id
string
required
account_id
string
required
currency
string
required
balance
number
required
reserved_funds
integer
required
promotional_balance
integer
required
promotional_reserved_balance
integer
required
available_balance
number
required
credit_limit
integer
required
is_postpaid
boolean
required
credit_limit_type
string
required
low_balance_threshold
integer
required
status
string
required
created_at
string
required
updated_at
string
required