# UFC Fight Stats by Event: Significant Strikes and Takedowns

**Use case:** 

UFC fight stats for a whole card, with significant strikes landed and attempted, takedowns, takedown accuracy, knockdowns, submissions, and control time for each fighter. Point it at an event ID to get strike-by-strike numbers for every bout, ready for a prediction model, a fantasy scorer, or a post-fight analysis sheet. Swap the event ID to pull any other card.

## Input

```json
{
  "mode": "fights",
  "eventIds": [
    "600057024"
  ],
  "promotions": [
    "ufc"
  ],
  "fromDate": "",
  "toDate": "",
  "weightClass": "",
  "titleFightsOnly": false,
  "maxItems": 10,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "fightId": {
    "label": "Fight ID",
    "format": "string"
  },
  "fighterName": {
    "label": "Fighter",
    "format": "string"
  },
  "sigStrikesLanded": {
    "label": "Sig. Strikes Landed",
    "format": "number"
  },
  "sigStrikesAttempted": {
    "label": "Sig. Strikes Attempted",
    "format": "number"
  },
  "takedownsLanded": {
    "label": "Takedowns Landed",
    "format": "number"
  },
  "takedownAccuracy": {
    "label": "Takedown Accuracy",
    "format": "number"
  },
  "knockDowns": {
    "label": "Knockdowns",
    "format": "number"
  },
  "submissions": {
    "label": "Submissions",
    "format": "number"
  },
  "timeInControl": {
    "label": "Control Time",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [MMA Stats Scraper: UFC Fights, Fighters & Rankings](https://apify.com/getascraper/ufc-mma-stats-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/getascraper/ufc-mma-stats-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/getascraper/ufc-mma-stats-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
