Skip to main content

Balance

The Balance API allows you to view and manage account balance information, including prepaid credits and usage tracking.

Base URL​

https://api.audian.com:8443/v2/accounts/{ACCOUNT_ID}/transactions

Overview​

Monitor your account balance, add credits, and track usage with the Transactions API. This provides access to transaction history, current balance, subscriptions, and billing information.

Endpoints​

MethodEndpointDescription
GET/transactionsList all transactions
GET/transactions/current_balanceGet current balance
GET/transactions/subscriptionsGet active subscriptions
GET/transactions/monthly_recurringGet monthly recurring charges
PUT/braintree/creditsAdd credits to account

List Transactions​

curl -X GET "https://api.audian.com:8443/v2/accounts/{ACCOUNT_ID}/transactions" \
-H "X-Auth-Token: {AUTH_TOKEN}" \
-H "Accept: application/json"

Response​

{
"auth_token": "{AUTH_TOKEN}",
"data": {
"balance": 100.00,
"currency": "USD"
},
"request_id": "{REQUEST_ID}",
"status": "success"
}
Documentation In Progress

This documentation is being expanded. Check back soon for complete API reference.