Skip to main content

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​

TypeDescription
debitCharge against your account
creditPayment or adjustment
recurringMonthly recurring charge
usageUsage-based charge

Account Status​

StatusDescription
enabled: trueAccount is in good standing
enabled: falseAccount is suspended

Manage Billing​

To manage payment methods and billing settings:

  1. Log into my.audian.com
  2. Navigate to Settings → Billing
  3. Update payment information as needed

Support​

For billing questions:

Topics​