---
title: "List Invoices"
method: GET
path: "/v1/billing/invoices"
tags: ["Billing"]
---

# List Invoices

`GET /v1/billing/invoices`

List all invoices associated with the account

## Query parameters

- `page` integer — Page of results to include (default = 1)
- `per_page` integer — How many results to include in each page (default = 10)
- `search` string
- `sort` 'id' | 'date' | 'due_date' | 'dollar_amount' | 'status'
- `direction` 'asc' | 'desc' | 'ASC' | 'DESC' — Direction to sort results in (asc = ascending, desc = descending)
- `status` 'Cancelled' | 'Collections' | 'Draft' | 'Payment Pending' | 'Paid' | 'Refunded' | 'Unpaid'

## Response `200`

OK

- BillingInvoicesResponse
  - `success` boolean — whether the request succeeded
  - `errors` string[]
  - `messages` string[], nullable
  - `metadata` object
    - `page` integer — Page number of the results
    - `page_size` integer — Number of results per page
    - `total` integer — Total number of results
    - `sort` string — Sorting criteria
    - `direction` 'asc' | 'desc' — Sorting direction
  - `result` BillingInvoiceForList[]
    - `id` integer — ID of the invoice
    - `date` string — Date the invoice was created
    - `due_date` string — Date the invoice is due
    - `payment` object
      - `status` 'Cancelled' | 'Collections' | 'Draft' | 'Payment Pending' | 'Paid' | 'Refunded' | 'Unpaid'
    - `total` number — Total amount of the invoice
    - `download_link` string — Link that can be used to download the invoice

## Other responses

- `400` — Bad Request
- `401` — Authentication failed
- `403` — Not authorized to access endpoint
- `405` — Invalid input
- `500` — Internal error

---

[API](https://skmtc.net/rocket/apis/rocket-net-api.md) · [All operations](https://skmtc.net/rocket/apis/rocket-net-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/rocket/rocket-net-api/versions/db0dcbbc5764/schema)
