Skip to main content
GET
/
fee_markups
List fee markups
curl --request GET \
  --url https://api.whop.com/api/v1/fee_markups \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "fee_type": "crypto_withdrawal_markup",
      "percentage_fee": 6.9,
      "fixed_fee_usd": 6.9,
      "notes": "<string>",
      "created_at": "2023-12-01T05:00:00.401Z",
      "updated_at": "2023-12-01T05:00:00.401Z"
    }
  ],
  "page_info": {
    "end_cursor": "<string>",
    "start_cursor": "<string>",
    "has_next_page": true,
    "has_previous_page": true
  }
}

Authorizations

Authorization
string
header
required

The app API key from an app from the /dashboard/developer page

Query Parameters

after
string | null

Returns the elements in the list that come after the specified cursor.

before
string | null

Returns the elements in the list that come before the specified cursor.

first
integer | null

Returns the first n elements from the list.

Example:

42

last
integer | null

Returns the last n elements from the list.

Example:

42

company_id
string
required

The ID (tag) of the company you want to list the fee markups for. If you pass your platform account, you will get the platform default markups.

Example:

"biz_xxxxxxxxxxxxxx"

Response

A successful response

The connection type for FeeMarkup.

data
object[]
required

A list of nodes.

page_info
object
required

Information to aid in pagination.