# Pull a Top Crypto Market Snapshot by Market Cap

**Use case:** 

Fetch a ranked market snapshot of the largest coins with prices, supply, dominance, and volume for research or reporting.

## Input

```json
{
  "mode": "market",
  "symbols": [
    "BTC",
    "ETH",
    "SOL",
    "XRP",
    "DOGE"
  ],
  "topN": 10,
  "vsCurrency": "usd",
  "useBinanceFallback": true,
  "dexQueries": [
    "So11111111111111111111111111111111111111112",
    "PEPE"
  ],
  "dexChain": "solana",
  "dexMaxPairsPerToken": 3,
  "walletAddresses": [
    "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"
  ],
  "walletChain": "eth",
  "walletPeriod": "7d",
  "responseFormat": "detailed"
}
```

## Output

```json
{
  "recordType": {
    "label": "Record Type",
    "format": "string"
  },
  "symbol": {
    "label": "Symbol",
    "format": "string"
  },
  "name": {
    "label": "Name",
    "format": "string"
  },
  "chain": {
    "label": "Chain",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "priceUsd": {
    "label": "Price USD (DEX)",
    "format": "number"
  },
  "change24h": {
    "label": "24h Change %",
    "format": "number"
  },
  "marketCap": {
    "label": "Market Cap",
    "format": "number"
  },
  "totalValueUsd": {
    "label": "Total Wallet Value USD",
    "format": "number"
  },
  "liquidityUsd": {
    "label": "Liquidity USD",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [Crypto Price Tracker — BTC, ETH & 17K+ Altcoins](https://apify.com/khadinakbar/crypto-price-tracker) with a specific input configuration. Visit the [Actor detail page](https://apify.com/khadinakbar/crypto-price-tracker) to learn more, explore other use cases, and run it yourself.