# UFCStats Event Card Extractor

**Use case:** 

Extract one UFCStats event card with bout stats, winners, methods, rounds, and linked fighter profiles.

## Input

```json
{
  "startUrls": [
    {
      "url": "http://ufcstats.com/statistics/events/completed?page=all"
    }
  ],
  "maxEvents": 1,
  "maxFightsPerEvent": 15,
  "includeFighterProfiles": true
}
```

## Output

```json
{
  "recordType": {
    "label": "Record type"
  },
  "eventName": {
    "label": "Event"
  },
  "eventDate": {
    "label": "Event date"
  },
  "eventLocation": {
    "label": "Location"
  },
  "redFighter": {
    "label": "Red fighter"
  },
  "blueFighter": {
    "label": "Blue fighter"
  },
  "winner": {
    "label": "Winner"
  },
  "weightClass": {
    "label": "Weight class"
  },
  "method": {
    "label": "Method"
  },
  "round": {
    "label": "Round"
  },
  "time": {
    "label": "Time"
  },
  "fighterName": {
    "label": "Fighter"
  },
  "fighterRecord": {
    "label": "Record"
  },
  "height": {
    "label": "Height"
  },
  "weight": {
    "label": "Weight"
  },
  "reach": {
    "label": "Reach"
  },
  "stance": {
    "label": "Stance"
  },
  "slpm": {
    "label": "SLpM"
  },
  "sapm": {
    "label": "SApM"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

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