---
title: "List fee schedules"
method: GET
path: "/v1/fee-schedules"
tags: ["Configuration Fee Schedules"]
---

# List fee schedules

`GET /v1/fee-schedules`

Use this endpoint to retrieve all fee schedules for the authenticated tenant.

## Query parameters

- `limit` integer

## Headers

- `X-Request-Id` string

## Response `200`

List of fee schedules with cursor pagination

- ListFeeSchedulesResponse — Paginated list of fee schedules
  - `items` FeeScheduleResponse[]
    - `id` string, uuid — Unique identifier for the fee schedule
    - `tenantId` string, uuid — Tenant that owns this fee schedule
    - `name` string — Display name for the fee schedule
    - `currency` string — Currency code (ISO 4217)
    - `applicationOrder` 'PARALLEL' | 'CASCADING' — Determines how multiple fee items compose within a schedule
    - `roundingScale` integer — Number of decimal places for rounding
    - `roundingMode` 'HALF_UP' | 'BANKERS' | 'FLOOR' | 'CEIL' | 'TRUNCATE' — Determines how intermediate fee calculations are rounded
    - `items` FeeScheduleItemResponse[] — Fee items in this schedule
      - `id` string, uuid — Unique identifier for the fee item
      - `name` string — Display name for the fee item
      - `priority` integer — Execution priority (lower numbers run first)
      - `structureType` 'FLAT' | 'PERCENTAGE' | 'TIERED' — Type of fee structure for a fee schedule item
      - `structure` object — Fee structure definition (varies by structureType)
      - `createdAt` string, date-time — Creation timestamp in RFC 3339 format
      - `updatedAt` string, date-time — Last update timestamp in RFC 3339 format
    - `createdAt` string, date-time — Creation timestamp in RFC 3339 format
    - `updatedAt` string, date-time — Last update timestamp in RFC 3339 format
  - `cursor` string — Cursor value to retrieve the next page of results

## Other responses

- `401` — The request lacks valid authentication credentials.
- `403` — You do not have permission to access this resource.
- `500` — An unexpected error occurred on the server.

---

[API](https://skmtc.net/lerian/apis/identity-plugin.md) · [All operations](https://skmtc.net/lerian/apis/identity-plugin/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/lerian/identity-plugin/versions/25daba385532/schema)
