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

# List invoices

`GET /invoices`

## Query parameters

- `page` integer
- `perPage` integer
- `status` union
  - string
  - string[]
- `currency` string[]
- `customer` union
  - string
  - string[]
- `budget` union
  - string
  - string[]
- `search` string
- `from` string, date-time
- `to` string, date-time

## Response `200`

OK

- object
  - `message` string, required
  - `status` boolean, required
  - `error` boolean, required
  - `data` object
    - `invoices` Invoice[]
      - `code` string
      - `invoiceId` string, nullable
      - `title` string, nullable
      - `description` string, nullable
      - `amount` integer — Minor units
      - `currency` string
      - `status` string
      - `due_date` string, date-time, nullable
      - `paidOn` string, date-time, nullable
      - `sent_at` string, date-time, nullable
      - `vat` number, nullable
      - `vatAmount` integer, nullable
      - `discount` integer, nullable
      - `discount_type` string, nullable
      - `customer` Customer
        - `code` string
        - `name` string
        - `email` string, email, nullable
        - `type` string, nullable
        - `status` string
      - `budget` CodeRef — code + name
        - `code` string
        - `name` string
      - `created_at` string, date-time
      - `updated_at` string, date-time
    - `meta` PaginationMeta
      - `page` integer
      - `perPage` integer
      - `total` integer
      - `hasMore` boolean
      - `nextPage` integer, nullable

## Other responses

- `401` — Unauthorized

---

[API](https://skmtc.dev/bujeti/apis/bujeti-public-api.md) · [All operations](https://skmtc.dev/bujeti/apis/bujeti-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/bujeti/bujeti-public-api/revisions/d2850fc5f576/schema)
