---
title: "List fee markups"
method: GET
path: "/fee_markups"
tags: ["Fee markups"]
---

# List fee markups

`GET /fee_markups`

Returns a paginated list of fee markups configured for a company. If the company is a platform account, returns the platform default markups.

Required permissions:
 - `company:update_child_fees`

## Query parameters

- `after` string, nullable — Returns the elements in the list that come after the specified cursor.
- `before` string, nullable — Returns the elements in the list that come before the specified cursor.
- `first` integer, nullable — Returns the first _n_ elements from the list.
- `last` integer, nullable — Returns the last _n_ elements from the list.
- `company_id` string, required — The unique identifier of the company to list fee markups for. Pass a platform account identifier to retrieve platform default markups.

## Response `200`

A successful response

- object — The connection type for FeeMarkup.
  - `data` FeeMarkupListItem[], required — A list of nodes.
    - `created_at` string, date-time, required — The datetime the fee markup was created.
    - `fee_type` 'crypto_withdrawal_markup' | 'rtp_withdrawal_markup' | 'next_day_bank_withdrawal_markup' | 'bank_wire_withdrawal_markup' | 'digital_wallet_withdrawal_markup', required — The types of fee markups that can be configured
    - `fixed_fee_usd` number, nullable, required — A flat fee charged per transaction, in USD. Ranges from 0 to 50. Null if no fixed fee is configured.
    - `id` string, required — The unique identifier for the fee markup.
    - `notes` string, nullable, required — Internal notes about this fee markup, visible only to administrators. Null if no notes have been added.
    - `percentage_fee` number, nullable, required — A percentage-based fee charged per transaction. Ranges from 0 to 25. Null if no percentage fee is configured.
    - `updated_at` string, date-time, required — The datetime the fee markup was last updated.
  - `page_info` PageInfo, required — Information about pagination in a connection.
    - `end_cursor` string, nullable, required — When paginating forwards, the cursor to continue.
    - `has_next_page` boolean, required — When paginating forwards, are there more items?
    - `has_previous_page` boolean, required — When paginating backwards, are there more items?
    - `start_cursor` string, nullable, required — When paginating backwards, the cursor to continue.

## Other responses

- `400` — Bad request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not found
- `422` — Verification required
- `429` — Too many requests
- `500` — Internal server error

---

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