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​
| Method | Endpoint | Description |
|---|---|---|
| GET | /transactions | List all transactions |
| GET | /transactions/current_balance | Get current balance |
| GET | /transactions/subscriptions | Get active subscriptions |
| GET | /transactions/monthly_recurring | Get monthly recurring charges |
| PUT | /braintree/credits | Add 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.