# Robinhood Prediction Markets Scraper Example

**Use case:** 

Scrape active Robinhood prediction-market contracts with live probabilities, prices, volume, open interest, outcomes, and closing dates.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://robinhood.com/us/en/prediction-markets/"
    }
  ],
  "status": "active",
  "maxItems": 50,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "eventName": {
    "label": "Event",
    "format": "string"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "symbol": {
    "label": "Symbol",
    "format": "string"
  },
  "outcomeName": {
    "label": "Outcome",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "probability": {
    "label": "Probability",
    "format": "number"
  },
  "yesBid": {
    "label": "Yes bid",
    "format": "number"
  },
  "yesAsk": {
    "label": "Yes ask",
    "format": "number"
  },
  "volume": {
    "label": "Volume",
    "format": "number"
  },
  "expirationTime": {
    "label": "Expires",
    "format": "string"
  },
  "sourceUrl": {
    "label": "Source",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped",
    "format": "string"
  }
}
```

## About this Actor

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