get-ticker-markets
Retrieve cryptocurrency ticker data across multiple exchanges to compare prices, trading pairs, and market availability for informed trading decisions.
Instructions
Get a list of tickers for a specific cryptocurrency across different exchanges.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
coinId | No | Coin identifier | |
exchange | No | Exchange name | |
fromCoin | No | From currency/coin symbol | |
limit | No | Number of results per page | |
onlyVerified | No | Filter only verified exchanges | |
page | No | Page number | |
toCoin | No | To currency/coin symbol |
Input Schema (JSON Schema)
{
"properties": {
"coinId": {
"description": "Coin identifier",
"type": "string"
},
"exchange": {
"description": "Exchange name",
"type": "string"
},
"fromCoin": {
"description": "From currency/coin symbol",
"type": "string"
},
"limit": {
"default": 20,
"description": "Number of results per page",
"type": "number"
},
"onlyVerified": {
"description": "Filter only verified exchanges",
"type": "boolean"
},
"page": {
"default": 1,
"description": "Page number",
"type": "number"
},
"toCoin": {
"description": "To currency/coin symbol",
"type": "string"
}
},
"type": "object"
}