# CoinLore Bitcoin Coin Scraper

**Use case:** 

Extract detailed Bitcoin (BTC) coin data from CoinLore including price, market cap, and supply. Clean structured output for analysis.

## Input

```json
{
  "mode": "coin",
  "maxItems": 3,
  "coinSymbol": "BTC"
}
```

## Output

```json
{
  "id": {
    "label": "Id",
    "format": "number"
  },
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "nameid": {
    "label": "Nameid",
    "format": "text"
  },
  "rank": {
    "label": "Rank",
    "format": "number"
  },
  "priceUsd": {
    "label": "Price Usd",
    "format": "number"
  },
  "percentChange1h": {
    "label": "Percent Change1h",
    "format": "number"
  },
  "percentChange24h": {
    "label": "Percent Change24h",
    "format": "number"
  },
  "percentChange7d": {
    "label": "Percent Change7d",
    "format": "number"
  },
  "priceBtc": {
    "label": "Price Btc",
    "format": "number"
  },
  "marketCapUsd": {
    "label": "Market Cap Usd",
    "format": "number"
  },
  "volume24h": {
    "label": "Volume24h",
    "format": "number"
  },
  "volume24hAdjusted": {
    "label": "Volume24h Adjusted",
    "format": "number"
  },
  "circulatingSupply": {
    "label": "Circulating Supply",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [CoinLore Crypto Scraper](https://apify.com/parseforge/coinlore-crypto-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/coinlore-crypto-scraper) to learn more, explore other use cases, and run it yourself.