Get fee schedules
GET/feeschedules
This endpoint lists all fee schedules.
Responses
- 200
- application/json
- Schema
- success
Schema
- Success Response
- ErrorResponse
- Array [
- Array [
- ]
- ]
accountInactive
: The Futures account the request refers to is inactiveapiLimitExceeded
: The API limit for the calling IP address has been exceededauthenticationError
: The request could not be authenticatedinsufficientFunds
: The amount requested for transfer is below the amount of funds availableinvalidAccount
: The Futures account the transfer request refers to is invalidinvalidAmount
: The amount the transfer request refers to is invalidinvalidArgument
: One or more arguments provided are invalidinvalidUnit
: The unit the transfer request refers to is invalidJson Parse Error
: The request failed to pass valid JSON as an argumentmarketUnavailable
: The market is currently unavailablenonceBelowThreshold
: The provided nonce is below the thresholdnonceDuplicate
: The provided nonce is a duplicate as it has been used in a previous requestnotFound
: The requested information could not be foundrequiredArgumentMissing
: One or more required arguments are missingServer Error
: There was an error processing the requestUnavailable
: The endpoint being called is unavailableunknownError
: An unknown error has occurred
feeSchedules object[]
tiers object[]
A list containing a structures for each fee tier, see below.
Percentage value of maker fee in the tier.
Percentage value of taker fee in the tier.
Minimum 30-day USD volume for fee tier to be applicable.
Name of schedule.
Unique identifier of fee schedule.
Possible values: [success
]
Server time in Coordinated Universal Time (UTC)
Possible values: [accountInactive
, apiLimitExceeded
, authenticationError
, insufficientFunds
, invalidAccount
, invalidAmount
, invalidArgument
, invalidUnit
, Json Parse Error
, marketUnavailable
, nonceBelowThreshold
, nonceDuplicate
, notFound
, requiredArgumentMissing
, Server Error
, Unavailable
, unknownError
]
Possible values: [accountInactive
, apiLimitExceeded
, authenticationError
, insufficientFunds
, invalidAccount
, invalidAmount
, invalidArgument
, invalidUnit
, Json Parse Error
, marketUnavailable
, nonceBelowThreshold
, nonceDuplicate
, notFound
, requiredArgumentMissing
, Server Error
, Unavailable
, unknownError
]
Error description.
Possible values: [error
]
Server time in Coordinated Universal Time (UTC)
{
"result": "success",
"serverTime": "2022-03-31T20:38:53.677Z",
"feeSchedules": [
{
"uid": "7fc4d7c0-464f-4029-a9bb-55856d0c5247",
"name": "PGTMainFees",
"tiers": [
{
"makerFee": 0.02,
"takerFee": 0.05,
"usdVolume": 0
},
{
"makerFee": 0.015,
"takerFee": 0.04,
"usdVolume": 100000
},
{
"makerFee": 0.0125,
"takerFee": 0.03,
"usdVolume": 1000000
},
{
"makerFee": 0.01,
"takerFee": 0.025,
"usdVolume": 5000000
},
{
"makerFee": 0.0075,
"takerFee": 0.02,
"usdVolume": 10000000
},
{
"makerFee": 0.005,
"takerFee": 0.015,
"usdVolume": 20000000
},
{
"makerFee": 0.0025,
"takerFee": 0.0125,
"usdVolume": 50000000
},
{
"makerFee": 0,
"takerFee": 0.01,
"usdVolume": 100000000
}
]
},
{
"uid": "d46c2190-81e3-4370-a333-424f24387829",
"name": "mainfees",
"tiers": [
{
"makerFee": 0.02,
"takerFee": 0.05,
"usdVolume": 0
},
{
"makerFee": 0.015,
"takerFee": 0.04,
"usdVolume": 100000
},
{
"makerFee": 0.0125,
"takerFee": 0.03,
"usdVolume": 1000000
},
{
"makerFee": 0.01,
"takerFee": 0.025,
"usdVolume": 5000000
},
{
"makerFee": 0.0075,
"takerFee": 0.02,
"usdVolume": 10000000
},
{
"makerFee": 0.005,
"takerFee": 0.015,
"usdVolume": 20000000
},
{
"makerFee": 0.0025,
"takerFee": 0.0125,
"usdVolume": 50000000
},
{
"makerFee": 0,
"takerFee": 0.01,
"usdVolume": 100000000
}
]
}
]
}