Skip to main content
GET
/
v1
/
organizations
/
billing
/
invoices
List Invoices
curl --request GET \
  --url https://api.mixpeek.com/v1/organizations/billing/invoices \
  --header 'Authorization: <authorization>'
{
  "total": 123,
  "has_more": true,
  "invoices": [
    {
      "invoice_id": "<string>",
      "invoice_url": "<string>",
      "invoice_pdf": "<string>",
      "amount_due": 123,
      "amount_paid": 123,
      "status": "<string>",
      "billing_month": "<string>",
      "total_credits": 123,
      "created": "2023-11-07T05:31:56Z",
      "paid_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Headers

Authorization
string
required

REQUIRED: Bearer token authentication using your API key. Format: 'Bearer sk_xxxxxxxxxxxxx'. You can create API keys in the Mixpeek dashboard under Organization Settings.

Query Parameters

limit
integer
default:10

Number of invoices to return

Required range: 1 <= x <= 100

Response

Successful Response

Response with list of invoices.

total
integer
required

Total number of invoices

has_more
boolean
required

Whether there are more invoices

invoices
InvoiceInfo · object[]

List of invoices