Skip to main content
GET
/
{version}
/
fees
/
platform
Get Platform Fees
curl --request GET \
  --url https://api.example.com/{version}/fees/platform \
  --header 'Authorization: Bearer <token>'
{
  "id": 123,
  "operation_type": "<string>",
  "percentage": "<string>",
  "fx_percentage": "<string>",
  "effective_from": "2023-11-07T05:31:56Z",
  "created_at": "2023-11-07T05:31:56Z",
  "payment_method": "<string>",
  "fixed_fee": 123,
  "fixed_fee_currency": "<string>",
  "effective_to": "2023-11-07T05:31:56Z",
  "tier": {
    "id": 123,
    "name": "<string>",
    "is_default": true,
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

version
string
required
Allowed value: "v1"

Query Parameters

operation_type
enum<string>
required
Available options:
COLLECTION,
PAYOUT,
TRANSFER,
REFUND
fee_tier_name
string
required

Response

Successful Response

FeeTierRateResponse

id
integer
required
operation_type
string
required
percentage
string
required
fx_percentage
string
required
effective_from
string<date-time>
required
created_at
string<date-time>
required
payment_method
string | null
fixed_fee

Amount

fixed_fee_currency
string | null
Required string length: 3
effective_to
string<date-time> | null
tier
FeeTier · object

Named platform fee plan. Only one tier may have is_default=True (unique partial index). Falls back to the default tier when no merchant-specific tier is assigned.

Last modified on June 23, 2026