List the authenticated user's wallet/usage history (cursor-paginated).
GET
/api/billing/usage
const url = 'https://api.tradr.cloud/api/billing/usage';const options = {method: 'GET'};
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://api.tradr.cloud/api/billing/usageUser-scoped unified history (credits, debits, reversals) joined to per-turn token detail (REQ-7.3). cursor is the opaque base64 cursor from a prior page; absent/invalid ⇒ first page. Response { items, nextCursor }.
Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”cursor
string
Responses
Section titled “Responses”{ items: WalletHistoryItem[], nextCursor: string | null }.