# USDC Coinbase Order Book, Candles & Trades

**Use case:** 

Extract Coinbase Order Book, Candles & Trades data filtered by USDC. Export structured results ready for analysis, lead generation, or research.

## Input

```json
{
  "productIds": [
    "BTC-USD",
    "ETH-USD",
    "SOL-USD",
    "XRP-USD",
    "DOGE-USD"
  ],
  "maxItems": 10,
  "quoteCurrencyFilter": "USDC",
  "statusFilter": "online",
  "sortBy": "volume24h",
  "includeTicker": true,
  "includeOrderBook": true,
  "orderBookLevel": "2",
  "orderBookMaxLevels": 25,
  "includeCandles": true,
  "candleGranularity": "3600",
  "includeTrades": true,
  "tradesLimit": 50
}
```

## Output

```json
{
  "productId": {
    "label": "Pair"
  },
  "displayName": {
    "label": "Display"
  },
  "baseCurrency": {
    "label": "Base"
  },
  "quoteCurrency": {
    "label": "Quote"
  },
  "status": {
    "label": "Status"
  },
  "priceLast": {
    "label": "Last Price"
  },
  "bid": {
    "label": "Best Bid"
  },
  "ask": {
    "label": "Best Ask"
  },
  "spread": {
    "label": "Spread"
  },
  "spreadPercent": {
    "label": "Spread %"
  },
  "open24h": {
    "label": "24h Open"
  },
  "high24h": {
    "label": "24h High"
  },
  "low24h": {
    "label": "24h Low"
  },
  "volume24h": {
    "label": "24h Volume"
  },
  "volume30day": {
    "label": "30d Volume"
  },
  "priceChange24h": {
    "label": "24h Change"
  },
  "priceChangePercent24h": {
    "label": "24h Change %"
  },
  "lastTradeId": {
    "label": "Last Trade ID"
  },
  "lastTradeTime": {
    "label": "Last Trade Time"
  },
  "orderBookLevel": {
    "label": "Book Level"
  },
  "candleGranularitySeconds": {
    "label": "Candle Interval (s)"
  },
  "scrapedAt": {
    "label": "Scraped At"
  },
  "url": {
    "label": "URL"
  },
  "error": {
    "label": "Error"
  }
}
```

## About this Actor

This example demonstrates how to use [Coinbase Order Book, Candles & Trades Scraper](https://apify.com/parseforge/coinbase-orderbook-candles-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/coinbase-orderbook-candles-scraper) to learn more, explore other use cases, and run it yourself.