dexNetworksList
Access a comprehensive list of blockchain networks linked to unique CoinMarketCap IDs. Filter and sort networks by ID or name to streamline data retrieval and integration.
Instructions
Returns a list of all networks to unique CoinMarketCap ids.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
aux | No | ||
limit | No | ||
sort | No | ||
sort_dir | No | ||
start | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"aux": {
"type": "string"
},
"limit": {
"type": "string"
},
"sort": {
"enum": [
"id",
"name"
],
"type": "string"
},
"sort_dir": {
"enum": [
"desc",
"asc"
],
"type": "string"
},
"start": {
"type": "string"
}
},
"type": "object"
}