List Withdrawal Fees
GET/v1/wallet/withdrawal-fees
List current withdrawal fees of different networks and coins.
Requires authentication.
Request
Query Parameters
asset string
Asset ID.
network string
This filter act as a database "like", returning all assets whose network name matches partially with this filter.
cursor string
A reference to the server indicating the next set of objects to be returned. It is sent back in every response were the number of objects returned is bigger than the limit.
limit integer
Possible values: non-empty
and <= 200 characters
, >= 1
and <= 200
Default value: 20
Max number of objects to be returned as result of request.
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
- Example 1
Schema
- Array [
- Array [
- ]
- ]
result object[]
asset string
Asset ID.
networks object[]
network string
Network name.
fee string
Fee value on current asset.
fee_usd string
Fee converted to USD using a market quotation.
{
"result": [
{
"asset": "ETH",
"networks": [
{
"network": "Ethereum",
"fee": "0.0007",
"fee_usd": "1.32"
}
]
}
]
}
{
"result": [
{
"asset": "ETH",
"networks": [
{
"network": "Ethereum",
"fee": "0.0007",
"fee_usd": "1.32"
}
]
}
]
}
Loading...