get_all_crypto_quotes
Real-time crypto quotes: the largest coins, each with a display name.
The feed carries 4,771 coins in alphabetical order, which is far more than one
response can hold — so this returns `limit` of them ordered by market
capitalisation, largest first, and the response states how many were left out.
Pass `symbols` for specific coins, or call get_crypto_quote for a single one.
Read `note` before summarising: it says how many coins the slice covers out of
how many exist, so a "top coins" answer is not mistaken for the whole market.
`volume` on a crypto row is the source venue's own figure and is not a common
unit across coins — some rows count coins, others quote-currency turnover. It
does not rank the market and coins cannot be compared on it.
Args:
symbols: Comma-separated coins (optional; overrides the ranked slice)
limit: How many ranked coins to return (optional)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | How many ranked coins to return (default 40, max 75). Ignored when `symbols` is given. | |
| symbols | No | Optional comma-separated coins to return instead of the ranked slice, e.g. 'BTCUSD,ETHUSD'. Bare tickers like 'BTC' resolve to the USD pair. |