# Limitless prediction markets scraper for Bitcoin odds

**Use case:** 

Search active Limitless prediction markets and export odds, volume, dates, tags, and market URLs to a structured dataset.

## Input

```json
{
  "marketUrls": [],
  "slugs": [],
  "searchQuery": "Bitcoin",
  "categories": [],
  "sortBy": "newest",
  "minVolume": 0,
  "includeOrderbook": false,
  "includePriceHistory": false,
  "preserveRaw": false,
  "maxItems": 25,
  "maxConcurrency": 4
}
```

## Output

```json
{
  "title": {
    "label": "Market",
    "format": "text"
  },
  "yesPrice": {
    "label": "Yes",
    "format": "number"
  },
  "noPrice": {
    "label": "No",
    "format": "number"
  },
  "volume": {
    "label": "Volume",
    "format": "number"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "categories": {
    "label": "Categories",
    "format": "array"
  },
  "startAt": {
    "label": "Starts",
    "format": "date"
  },
  "expiresAt": {
    "label": "Expires",
    "format": "date"
  },
  "tradeType": {
    "label": "Trade type",
    "format": "text"
  },
  "url": {
    "label": "Market",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Limitless Prediction Markets Scraper](https://apify.com/automation-lab/limitless-prediction-markets-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/limitless-prediction-markets-scraper) to learn more, explore other use cases, and run it yourself.