Skip to main content
GET
/
account
/
invoices
List invoices
curl --request GET \
  --url https://console.cloudblast.io/api/v2/account/invoices \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 42,
      "status": "paid",
      "total": 29.99,
      "amount_due": 0,
      "amount_paid": 29.99,
      "type": null,
      "created_at": "2026-01-15T10:30:00+00:00"
    }
  ],
  "meta": {
    "current_page": 1,
    "last_page": 3,
    "per_page": 25,
    "total": 72
  }
}

Authorizations

Authorization
string
header
required

API token from your CloudBlast account settings. Pass as Authorization: Bearer <token>.

Query Parameters

page
integer
default:1

Page number for pagination

Response

Paginated invoice list

data
object[]
meta
object