billing_ledger_retrieve
GET
/v1/billing/ledger
const url = 'https://example.com/v1/billing/ledger';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/v1/billing/ledger \ --header 'Authorization: Bearer <token>'GET /v1/billing/ledger — transparent line items, newest first.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”No response body