# Opinion prediction markets scraper example

**Use case:** 

Scrape active Opinion prediction markets with live probabilities, volume, rules, categories, IDs, and source URLs for research or dashboards.

## Input

```json
{
  "searchQuery": "Fed",
  "categories": [],
  "status": "active",
  "minVolume": 0,
  "maxItems": 50
}
```

## Output

```json
{
  "title": {
    "label": "Market",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "categories": {
    "label": "Categories",
    "format": "array"
  },
  "yesLastProbability": {
    "label": "YES last",
    "format": "number"
  },
  "yesBuyProbability": {
    "label": "YES buy",
    "format": "number"
  },
  "yesSellProbability": {
    "label": "YES sell",
    "format": "number"
  },
  "volume": {
    "label": "Volume",
    "format": "number"
  },
  "volume24h": {
    "label": "24h volume",
    "format": "number"
  },
  "volume7d": {
    "label": "7d volume",
    "format": "number"
  },
  "cutoffAt": {
    "label": "Cutoff",
    "format": "string"
  },
  "questionId": {
    "label": "Question ID",
    "format": "string"
  },
  "sourceUrl": {
    "label": "Source",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Observed at",
    "format": "string"
  }
}
```

## About this Actor

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