---
title: "Query for a pageable list of fees."
method: GET
path: "/v2/fees"
tags: ["Fees"]
---

# Query for a pageable list of fees.

`GET /v2/fees`

## Query parameters

- `since_utc` string, date-time, nullable
- `booking_id` integer, nullable

## Response `200`

The paged result of fees.

- PageableEnumerableOfFeeViewModel — Represents a single page plus meta data for a collection of records.
  - `items` FeeViewModel[] — The subset of records for the current page in the collection.
    - `id` integer — The ID of this record.
    - `amount` number — The fee amount.
    - `booking_id` integer — The id of the booking.
    - `category` ExpenseCategoryPartialViewModel
      - `id` integer — The ID of this record.
      - `name` string
    - `description` string — The fee description.
    - `payment_id` integer, nullable — The id of the payment, if one exists.
    - `refund_id` integer, nullable — The id of the refund, if one exists.
    - `security_deposit_id` integer, nullable — The id of the security deposit, if one exists.
  - `limit` integer — The maximum number of records per page.
  - `next_page_url` string — URL to fetch the next page of records. A null value indicates that there are no more pages in the collection.
  - `offset` integer — The current offset from the start of the collection.

---

[API](https://skmtc.net/ownerrez/apis/ownerrez-api.md) · [All operations](https://skmtc.net/ownerrez/apis/ownerrez-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/ownerrez/ownerrez-api/versions/fa0c0f146039/schema)
