---
title: "Retrieve a list of all receipts"
method: GET
path: "/v1/receipts"
tags: ["Receipts"]
---

# Retrieve a list of all receipts

`GET /v1/receipts`

## Query parameters

- `created_at__gte` string, date-time
- `created_at__lte` string, date-time, nullable
- `order_by` 'created_at' | '-created_at'
- `page` integer
- `page_size` integer

## Response `200`

A paginated list of all receipts

- CountablePagedResponseReceiptSchema
  - `items` ReceiptSchema[], required — The list of items on the current page.
    - `id` string, uuid, required — Unique identifier for the receipt.
    - `user` EmailReferenceSchemaUserSchema
      - `id` string, uuid, required — Unique identifier for the referenced entity.
      - `email` string, required — Email of the referenced entity.
    - `image_url` string, required — URL of the receipt image.
    - `transactions` ReferenceSchemaCardTransactionSchema[], required — List of transactions associated with the receipt.
      - `id` string, uuid, required — Unique identifier for the referenced entity.
    - `created_at` string, date-time, required — Timestamp when the receipt was uploaded to Float.
  - `page` integer, required — The current page number.
  - `page_size` integer, required — The number of items per page.
  - `created_at__lte` string, date-time, required — The most recent date for which results are included.
  - `created_at__gte` string, date-time, required — The least recent date for which results are included.
  - `ordered_by` 'created_at' | '-created_at', required
  - `pages` integer, required — The total number of pages available.
  - `count` integer, required — The total number of items available.

---

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