Skip to main content

Fees

GET /v1/p/user/fees

Get current trading fees.

curl -X GET "$ETHGAS_API_URL/v1/p/user/fees"

Request

No parameters required.

Response Body

NameTypeDescription
buyFeeRateBigDecimalPercentage fees charged for buy transaction
primarySellFeeRateBigDecimalPercentage fees charged for first time sell transaction
secondarySellFeeRateBigDecimalPercentage fees charged for subsequent sell transaction

Example Response

{
"success": true,
"data": {
"buyFeeRate": "0.01",
"primarySellFeeRate": "0.045",
"secondarySellFeeRate": "0.05"
}
}