> ## Documentation Index
> Fetch the complete documentation index at: https://sendcloud.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Invoice Items API overview

The **Invoice Items API** lets you retrieve the billable line items charged to your Sendcloud account. An invoice item is a single billable line — for example a parcel fee, a pickup fee, or a subscription charge.

<Warning>
  This API is currently in **beta**. Its shape may change in backwards-incompatible ways while we collect feedback.
</Warning>

## Pending vs invoiced items

Invoice items are returned **before** they are consolidated onto an invoice, so you can reconcile expected spend in near real-time.

* **Invoiced** items have `invoice_id` set, along with `tax` and `tax_rate`.
* **Pending** items have `invoice_id`, `tax`, and `tax_rate` set to `null`. Tax is only computed when the item is invoiced.

<Warning>
  Pending invoice items are **not final**. Amounts and types can still change, and Sendcloud may remove items, up until
  they are consolidated onto an invoice. Treat pending items as a preview, not a guarantee.
</Warning>

## Filtering

Filter the list with `created_after` / `created_before` (compared against the item's billing date, both inclusive), `parcel_id`, `invoice_id`, or `type`. See the [Retrieve a list of invoice items](/api/v3/invoice-items/retrieve-a-list-of-invoice-items) endpoint for the full list of supported parameters.

## Pagination

This endpoint uses cursor-based pagination via `Link` response headers. See [Pagination](/api/v3/pagination) for details.
