Fees
Retrieve and configure fees.
The Fees module retrieves and creates fee configurations for the authenticated business.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Retrieve and configure fees.
GET /v2/fees
| Parameter | Required | Values |
|---|---|---|
type | No | FIXED, PERCENTAGE |
pair | No | USDC/BOB, BOB/USDC, USDT/BOB, BOB/USDT |
transactionType | No | Supported transaction types |
status | No | CURRENT, OLD |
[
{
"pair": "USDC/BOB",
"transactionType": "withdrawal_express",
"amount": 0.5,
"feeType": "PERCENTAGE",
"status": "CURRENT",
"createdBy": "Partner User",
"validUntil": null,
"supersededBy": null,
"predecessor": null
}
]
POST /v2/fees
{
"pair": "USDC/BOB",
"transactionType": "withdrawal_express",
"amount": 0.5,
"type": "PERCENTAGE"
}
{
"pair": "USDC/BOB",
"transactionType": "withdrawal_express",
"amount": 0.5,
"feeType": "PERCENTAGE",
"status": "CURRENT",
"createdBy": "Partner User"
}
| Type | Description |
|---|---|
PERCENTAGE | Applied to the exchange rate. |
FIXED | Applied to the total amount. |