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

# List invoices

`GET /api/v1/invoices`

List invoices with optional filtering by customer, subscription, or status.

## Query parameters

- `customer_id` string
- `subscription_id` string, MeteroidId
- `statuses` string[]
- `order_by` string
- `page` integer
- `per_page` integer

## Response `200`

List of invoices

- InvoiceListResponse
  - `data` Invoice[], required
    - `amount_due` integer, required
    - `applied_credits` integer, required
    - `coupons` CouponLineItem[], required
      - `coupon_id` string, required
      - `name` string, required
      - `total` integer, required
    - `created_at` string, date-time, required
    - `currency` 'AED' | 'AFN' | 'ALL' | 'AMD' | 'ANG' | 'AOA' | 'ARS' | 'AUD' | 'AWG' | 'AZN' | 'BAM' | 'BBD' | 'BDT' | 'BGN' | 'BHD' | 'BIF' | 'BMD' | 'BND' | 'BOB' | 'BRL' | 'BSD' | 'BTN' | 'BWP' | 'BYN' | 'BZD' | 'CAD' | 'CDF' | 'CHF' | 'CLP' | 'CNH' | 'CNY' | 'COP' | 'CRC' | 'CUC' | 'CUP' | 'CVE' | 'CZK' | 'DJF' | 'DKK' | 'DOP' | 'DZD' | 'EGP' | 'ERN' | 'ETB' | 'EUR' | 'FJD' | 'FKP' | 'GBP' | 'GEL' | 'GHS' | 'GIP' | 'GMD' | 'GNF' | 'GTQ' | 'GYD' | 'HKD' | 'HNL' | 'HRK' | 'HTG' | 'HUF' | 'IDR' | 'ILS' | 'INR' | 'IQD' | 'IRR' | 'ISK' | 'JMD' | 'JOD' | 'JPY' | 'KES' | 'KGS' | 'KHR' | 'KMF' | 'KPW' | 'KRW' | 'KWD' | 'KYD' | 'KZT' | 'LAK' | 'LBP' | 'LKR' | 'LRD' | 'LSL' | 'LYD' | 'MAD' | 'MDL' | 'MGA' | 'MKD' | 'MMK' | 'MNT' | 'MOP' | 'MRU' | 'MUR' | 'MVR' | 'MWK' | 'MXN' | 'MYR' | 'MZN' | 'NAD' | 'NGN' | 'NIO' | 'NOK' | 'NPR' | 'NZD' | 'OMR' | 'PAB' | 'PEN' | 'PGK' | 'PHP' | 'PKR' | 'PLN' | 'PYG' | 'QAR' | 'RON' | 'RSD' | 'RUB' | 'RWF' | 'SAR' | 'SBD' | 'SCR' | 'SDG' | 'SEK' | 'SGD' | 'SHP' | 'SLL' | 'SOS' | 'SRD' | 'SSP' | 'STD' | 'STN' | 'SVC' | 'SYP' | 'SZL' | 'THB' | 'TJS' | 'TMT' | 'TND' | 'TOP' | 'TRY' | 'TTD' | 'TWD' | 'TZS' | 'UAH' | 'UGX' | 'USD' | 'UYU' | 'UZS' | 'VES' | 'VND' | 'VUV' | 'WST' | 'XAF' | 'XCD' | 'XOF' | 'XPF' | 'YER' | 'ZAR' | 'ZMW' | 'ZWL', required
    - `customer_details` CustomerDetails, required
      - `alias` string, nullable
      - `billing_address` Address
        - `city` string, nullable
        - `country` string, CountryCode
        - `line1` string, nullable
        - `line2` string, nullable
        - `state` string, nullable
        - `zip_code` string, nullable
      - `email` string, nullable
      - `id` string, MeteroidId, required
      - `name` string, required
      - `snapshot_at` string, date-time, required
      - `vat_number` string, nullable
    - `customer_id` string, MeteroidId, required
    - `due_date` string, date, nullable
    - `finalized_at` string, date-time, nullable
    - `id` string, MeteroidId, required
    - `invoice_date` string, date, required
    - `invoice_number` string, required
    - `invoice_type` 'RECURRING' | 'ONE_OFF' | 'ADJUSTMENT' | 'USAGE_THRESHOLD', required
    - `line_items` InvoiceLineItem[], required
      - `amount_total` integer, required
      - `description` string, nullable
      - `end_date` string, date, required
      - `name` string, required
      - `quantity` string, decimal
      - `start_date` string, date, required
      - `sub_line_items` SubLineItem[], required
        - `id` string, required
        - `name` string, required
        - `quantity` string, decimal, required
        - `total` integer, required
        - `unit_price` string, decimal, required
      - `tax_rate` string, decimal, required
      - `unit_price` string, decimal
    - `marked_as_uncollectible_at` string, date-time, nullable
    - `memo` string, nullable
    - `net_terms` integer, required
    - `paid_at` string, date-time, nullable
    - `payment_status` 'UNPAID' | 'PARTIALLY_PAID' | 'PAID' | 'ERRORED' | 'PROCESSING', required
    - `purchase_order` string, nullable
    - `reference` string, nullable
    - `status` 'DRAFT' | 'FINALIZED' | 'UNCOLLECTIBLE' | 'VOID', required
    - `subscription_id` string, MeteroidId
    - `subtotal` integer, required
    - `subtotal_recurring` integer, required
    - `tax_amount` integer, required
    - `tax_breakdown` TaxBreakdownItem[], required
      - `exemption_reason` string, nullable — Free-text legal exemption mention (EU exempt/reverse-charge invoices).
      - `exemption_type` 'REVERSE_CHARGE' | 'TAX_EXEMPT' | 'NOT_REGISTERED'
      - `name` string, required
      - `tax_amount` integer, required
      - `tax_rate` string, decimal, required
      - `tax_reference` string, nullable — Accounting/reporting code of the tax rate for this line, for exports.
      - `taxable_amount` integer, required
    - `total` integer, required
    - `transactions` Transaction[], required
      - `amount` integer, required
      - `currency` string, required
      - `error` string, nullable
      - `id` string, MeteroidId, required
      - `payment_method_id` string, MeteroidId
      - `payment_method_info` PaymentMethodInfo
        - `account_number_hint` string, nullable
        - `card_brand` string, nullable
        - `card_last4` string, nullable
        - `payment_method_type` 'CARD' | 'BANK_TRANSFER' | 'WALLET' | 'OTHER', required
      - `payment_type` 'PAYMENT' | 'REFUND', required
      - `processed_at` string, date-time, nullable
      - `provider_transaction_id` string, nullable
      - `status` 'READY' | 'PENDING' | 'SETTLED' | 'CANCELLED' | 'FAILED' | 'REFUNDED', required
    - `updated_at` string, date-time, nullable
    - `voided_at` string, date-time, nullable
  - `pagination_meta` PaginationResponse, required
    - `page` integer, required
    - `per_page` integer, required
    - `total_items` integer, required
    - `total_pages` integer, required

## Other responses

- `401` — Unauthorized
- `429` — Too many requests
- `500` — Internal error

## Changes

> 54 revisions in range; 1 could not be searched.

- **2026-08-21** (v1) `174308f2d7c7` — 2 warning
  - added the new `PROCESSING` enum value to the `data/items/payment_status` response property for the response status `200`
  - added the new `REFUNDED` enum value to the `data/items/transactions/items/status` response property for the response status `200`
- **2026-03-30** (v1) `5cb340234766` — 1 info
  - added the new optional `query` request parameter `order_by`
- **2026-03-27** (v1) `de35c02bb0d2` — 4 breaking, 28 warning, 31 info
  - removed the enum value `Draft` from the property `items/` of the `query` request parameter `statuses`
  - removed the enum value `Finalized` from the property `items/` of the `query` request parameter `statuses`
  - removed the enum value `Uncollectible` from the property `items/` of the `query` request parameter `statuses`
  - removed the enum value `Void` from the property `items/` of the `query` request parameter `statuses`
  - …59 more
- **2026-01-20** (v1) `665f680338b5` — 2 info
  - api tag `Invoices` added
  - api tag `invoice` removed
- …earlier changes not shown

[Full history](https://skmtc.dev/meteroid-oss/apis/meteroid/changes/api/v1/invoices/get.md)

---

[API](https://skmtc.dev/meteroid-oss/apis/meteroid.md) · [All operations](https://skmtc.dev/meteroid-oss/apis/meteroid/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/meteroid-oss/meteroid/revisions/03f9d8ae5c5e/schema)
