# FanDuel Basketball Odds Scraper

**Use case:** 

Scrape current FanDuel basketball betting markets, selections, and American, decimal, and fractional odds.

## Input

```json
{
  "sports": [
    "basketball"
  ],
  "maxEvents": 10,
  "maxSelections": 500,
  "inPlayOnly": false,
  "marketTypes": [],
  "includeInactive": false,
  "eventTypeIds": [],
  "timezone": "America/New_York",
  "proxyMode": "fallback",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "sport": {
    "label": "Sport"
  },
  "competitionName": {
    "label": "Competition"
  },
  "eventName": {
    "label": "Event"
  },
  "eventStartTime": {
    "label": "Starts",
    "format": "date"
  },
  "inPlay": {
    "label": "Live"
  },
  "marketName": {
    "label": "Market"
  },
  "marketType": {
    "label": "Type"
  },
  "selectionName": {
    "label": "Selection"
  },
  "handicap": {
    "label": "Handicap"
  },
  "americanOdds": {
    "label": "American"
  },
  "decimalOdds": {
    "label": "Decimal"
  },
  "fractionalOdds": {
    "label": "Fractional"
  },
  "marketStatus": {
    "label": "Status"
  },
  "retrievedAt": {
    "label": "Retrieved",
    "format": "date"
  },
  "sourceUrl": {
    "label": "Source",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [FanDuel Sportsbook Odds Scraper](https://apify.com/automation-lab/fanduel-sportsbook-odds-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/fanduel-sportsbook-odds-scraper) to learn more, explore other use cases, and run it yourself.