---
title: "Retrieve a paginated list of bill attachments by bill ID"
method: GET
path: "/v1/bills/{bill_id}/attachments"
tags: ["Bill Attachments"]
---

# Retrieve a paginated list of bill attachments by bill ID

`GET /v1/bills/{bill_id}/attachments`

## Path parameters

- `bill_id` string, uuid, required

## 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 bill attachments

- CountablePagedResponseBillAttachmentSchema
  - `items` BillAttachmentSchema[], required — The list of items on the current page.
    - `id` string, uuid, required — Unique identifier for the bill attachment.
    - `name` string, required — The file name of the bill attachment.
    - `file_url` string, required — The URL of the bill attachment. This URL is presigned and will expire after 4 hours.
    - `bill` ReferenceSchemaBillSchema, required
      - `id` string, uuid, required — Unique identifier for the referenced entity.
    - `created_at` string, date-time, required — The datetime that the bill attachment 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.

## Other responses

- `404` — Bill not found

---

[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)
