My App
API ReferenceBilling

Get Billing History

View your billing history to track credits and charges.

Shows all billing history entries: credits added, usage charges, and adjustments. Filter by entry type to see only specific transactions.

GET
/v1/billing/history

Query Parameters

limit?integer
Default50
Range1 <= value <= 100
cursor?|
entry_type?|

Response Body

application/json

application/json

curl -X GET "https://loading/v1/billing/history"
{
  "next_page_cursor": "string",
  "query": {},
  "has_more": true,
  "items": [
    {
      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
      "entry_type": "credit_purchase",
      "amount_cents": 0,
      "balance_after_cents": 0,
      "description": "string",
      "workspace_id": "0967198e-ec7b-4c6b-b4d3-f71244cadbe9",
      "reference_id": "string",
      "reference_type": "stripe_payment",
      "created_at": "2019-08-24T14:15:22Z"
    }
  ]
}
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}