CoinMarketCap integration (Finance, Data). Imported from open-connector.
https://pro-api.coinmarketcap.com/v1/key/info
/v1/cryptocurrency/map
| Param | Type | Required | Description |
|---|---|---|---|
| id | string | optional | Comma-separated CoinMarketCap asset IDs to filter by. |
| listing_status | string | optional | Comma-separated listing statuses to include, such as active or inactive. |
| slug | string | optional | Comma-separated asset slugs to filter by. |
| symbol | string | optional | Comma-separated asset symbols to filter by. |
| aux | string | optional | Comma-separated auxiliary fields to include, such as platform or first_historic… |
| sort | string | optional | Field used to sort the response. |
| start | integer | optional | 1-based offset of the first item to return. |
| limit | integer | optional | Maximum number of assets to return. |
/v1/cryptocurrency/quotes/latest
| Param | Type | Required | Description |
|---|---|---|---|
| id | string | optional | Comma-separated CoinMarketCap asset IDs to query. |
| symbol | string | optional | Comma-separated asset symbols to query. |
| slug | string | optional | Comma-separated asset slugs to query. |
| convert | string | optional | Comma-separated quote currency symbols to convert into. |
| convert_id | string | optional | Comma-separated CoinMarketCap IDs of quote currencies to convert into. |
| skip_invalid | boolean | optional | Whether invalid identifiers should be silently skipped by CoinMarketCap. |
| aux | string | optional | Comma-separated auxiliary asset fields to include. |
/v1/cryptocurrency/listings/latest
| Param | Type | Required | Description |
|---|---|---|---|
| start | integer | optional | 1-based offset of the first item to return. |
| limit | integer | optional | Maximum number of assets to return. |
| price_min | number | optional | Minimum asset price filter. |
| price_max | number | optional | Maximum asset price filter. |
| market_cap_min | number | optional | Minimum market capitalization filter. |
| market_cap_max | number | optional | Maximum market capitalization filter. |
| volume_24h_min | number | optional | Minimum 24-hour traded volume filter. |
| volume_24h_max | number | optional | Maximum 24-hour traded volume filter. |
| circulating_supply_min | number | optional | Minimum circulating supply filter. |
| circulating_supply_max | number | optional | Maximum circulating supply filter. |
| percent_change_24h_min | number | optional | Minimum 24-hour percentage change filter. |
| percent_change_24h_max | number | optional | Maximum 24-hour percentage change filter. |
| convert | string | optional | Quote currency symbol to convert the listings into. |
| convert_id | string | optional | CoinMarketCap quote currency ID used instead of convert. |
| sort | string | optional | Field used to sort the returned listings. |
| sort_dir | string | optional | Sort direction used by CoinMarketCap. |
| cryptocurrency_type | string | optional | Asset type filter used by CoinMarketCap. |
| tag | string | optional | Comma-separated asset tags to filter by. |
| aux | string | optional | Comma-separated auxiliary asset fields to include. |
/v1/global-metrics/quotes/latest
| Param | Type | Required | Description |
|---|---|---|---|
| convert | string | optional | Quote currency symbol to convert the metrics into. |
| convert_id | string | optional | CoinMarketCap quote currency ID used instead of convert. |
/v1/tools/price-conversion
| Param | Type | Required | Description |
|---|---|---|---|
| amount | number | required | Amount of the source asset to convert. |
| id | integer | optional | CoinMarketCap ID of the source asset. |
| symbol | string | optional | Ticker symbol of the source asset. |
| convert | string | optional | Target currency symbol used for conversion. |
| convert_id | string | optional | CoinMarketCap ID of the target currency used instead of convert. |
| time | string | optional | Historical timestamp or date to use for conversion, when supported by the API p… |