Get monthly charges summary
Retrieve a summary of monthly charges for a specified date range. The date range cannot exceed 31 days.
Query parameters
Start date for the charges summary in ISO date format (YYYY-MM-DD)
End date for the charges summary in ISO date format (YYYY-MM-DD). The date is exclusive, data for the end_date itself is not included in the report. The interval between start_date and end_date cannot exceed 31 days.
Response
Monthly charges summary
Example response
{
"data": {
"user_id": "0db0b4aa-a83d-4d4f-ad9b-3ba7c1ac2ce8",
"start_date": "2025-05-01",
"end_date": "2025-06-01",
"user_email": "user@example.com",
"currency": "USD",
"summary": {
"lines": [
{
"type": "comparative",
"name": "Local DIDs",
"alias": "local",
"new_this_month": {
"quantity": 10,
"mrc": "25.50",
"otc": "5.00"
},
"existing_this_month": {
"quantity": 8,
"mrc": "20.00"
}
},
{
"type": "simple",
"name": "Port Out",
"alias": "port_out",
"quantity": 100,
"amount": "15.75"
}
],
"adjustments": [
{
"amount": "-10.00",
"description": "Credit for service outage",
"event_date": "2025-05-15"
}
]
},
"total": {
"new_mrc": "50.00",
"new_otc": "25.00",
"existing_mrc": "100.00",
"other": "10.00",
"credits": "-5.00",
"ledger_adjustments": "0.00",
"grand_total": "180.00"
}
}
}Changes
Changed in 2 of the 99 revisions of this API.7
- ▲
the response's body type changed from
objectto no type for statusresponse-body-type-changed
- ▲
the
/response's property type changed fromobjectto no type for statusresponse-property-type-changed
- ▲
the
//response's property type changed fromintegertostring, and format fromint32tointegerfor statusresponse-property-type-changed
This revision also has 64 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ▲
- ▲
the response's body type changed from no type to
objectfor statusresponse-body-type-changed
- ▲
the
/response's property type changed from no type toobjectfor statusresponse-property-type-changed
- ▲
the
//response's property type changed fromstringtointeger, and format fromintegertoint32for statusresponse-property-type-changed
- ▲
the
///response's property format changed fromjson-pointerto no format for statusresponse-property-type-changed
This revision also has 41 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ▲
Of the 99 revisions, 1 has no diff computed.