Billing
The Billing API allows you to monitor your account usage, review transactions, and access billing information.
Base URL​
https://api.audian.com:8443/v2/accounts/{ACCOUNT_ID}
Authentication​
All requests require the X-Auth-Token header:
curl -X GET "https://api.audian.com:8443/v2/accounts/{ACCOUNT_ID}/transactions" \
-H "X-Auth-Token: {AUTH_TOKEN}" \
-H "Accept: application/json"
Get Transactions​
View billing transactions for your account:
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": "eyJhbGciOiJSUzI1...",
"data": [
{
"id": "txn_abc123",
"amount": 25.00,
"description": "Monthly phone number rental",
"created": "2026-02-01T00:00:00Z",
"type": "debit"
}
],
"request_id": "req_xyz789",
"status": "success"
}
Get Current Balance​
curl -X GET "https://api.audian.com:8443/v2/accounts/{ACCOUNT_ID}/balance" \
-H "X-Auth-Token: {AUTH_TOKEN}" \
-H "Accept: application/json"
Response​
{
"auth_token": "eyJhbGciOiJSUzI1...",
"data": {
"balance": 150.00,
"currency": "USD"
},
"status": "success"
}
Get Service Plans​
View available service plans:
curl -X GET "https://api.audian.com:8443/v2/accounts/{ACCOUNT_ID}/service_plans" \
-H "X-Auth-Token: {AUTH_TOKEN}" \
-H "Accept: application/json"
Billing Basics​
Charges​
Audian charges for:
- Phone Numbers: Monthly rental fees for owned numbers
- Call Usage: Per-minute rates for inbound/outbound calls
- Features: Voicemail transcription, conferencing, etc.
- Number Porting: One-time fee for number transfers
- E911 Setup: Emergency services configuration
Billing Cycle​
- Billing Period: Monthly, starting on account creation date
- Invoice Date: Issued on the first day of the following month
- Due Date: Typically 30 days from invoice date
Transaction Types​
| Type | Description |
|---|---|
debit | Charge against your account |
credit | Payment or adjustment |
recurring | Monthly recurring charge |
usage | Usage-based charge |
Account Status​
| Status | Description |
|---|---|
enabled: true | Account is in good standing |
enabled: false | Account is suspended |
Manage Billing​
To manage payment methods and billing settings:
- Log into my.audian.com
- Navigate to Settings → Billing
- Update payment information as needed
Support​
For billing questions:
- Email: billing@audian.com
- Support Portal: https://support.audian.com
Topics​
- Transactions - View transaction history
- Usage - Monitor resource usage
- Limits - Set spending limits