dexListingsLatest
Fetch a paginated list of decentralised cryptocurrency exchanges with aggregated market data, including volume and market share, sorted by user-defined parameters.
Instructions
Returns a paginated list of all decentralised cryptocurrency exchanges including the latest aggregate market data.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
aux | No | ||
convert_id | No | ||
limit | No | ||
sort | No | ||
sort_dir | No | ||
start | No | ||
type | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"aux": {
"type": "string"
},
"convert_id": {
"type": "string"
},
"limit": {
"type": "string"
},
"sort": {
"enum": [
"name",
"volume_24h",
"market_share",
"num_markets"
],
"type": "string"
},
"sort_dir": {
"enum": [
"desc",
"asc"
],
"type": "string"
},
"start": {
"type": "string"
},
"type": {
"enum": [
"all",
"orderbook",
"swap",
"aggregator"
],
"type": "string"
}
},
"type": "object"
}