allCryptocurrencyListings
Retrieve a paginated list of all active cryptocurrencies, filtering by market data such as price, market cap, volume, and supply. Ideal for tracking and analyzing cryptocurrency metrics.
Instructions
Returns a paginated list of all active cryptocurrencies with latest market data.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
aux | No | ||
circulating_supply_max | No | ||
circulating_supply_min | No | ||
convert | No | ||
convert_id | No | ||
cryptocurrency_type | No | ||
limit | No | ||
market_cap_max | No | ||
market_cap_min | No | ||
percent_change_24h_max | No | ||
percent_change_24h_min | No | ||
price_max | No | ||
price_min | No | ||
sort | No | ||
sort_dir | No | ||
start | No | ||
tag | No | ||
volume_24h_max | No | ||
volume_24h_min | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"aux": {
"type": "string"
},
"circulating_supply_max": {
"type": "number"
},
"circulating_supply_min": {
"type": "number"
},
"convert": {
"type": "string"
},
"convert_id": {
"type": "string"
},
"cryptocurrency_type": {
"type": "string"
},
"limit": {
"maximum": 5000,
"minimum": 1,
"type": "number"
},
"market_cap_max": {
"type": "number"
},
"market_cap_min": {
"type": "number"
},
"percent_change_24h_max": {
"type": "number"
},
"percent_change_24h_min": {
"type": "number"
},
"price_max": {
"type": "number"
},
"price_min": {
"type": "number"
},
"sort": {
"enum": [
"market_cap",
"name",
"symbol",
"date_added",
"price",
"circulating_supply",
"total_supply",
"max_supply",
"num_market_pairs",
"volume_24h",
"percent_change_1h",
"percent_change_24h",
"percent_change_7d"
],
"type": "string"
},
"sort_dir": {
"enum": [
"asc",
"desc"
],
"type": "string"
},
"start": {
"type": "number"
},
"tag": {
"type": "string"
},
"volume_24h_max": {
"type": "number"
},
"volume_24h_min": {
"type": "number"
}
},
"type": "object"
}