# UFC Title Fights 2025: Championship Bout Results Export

**Use case:** 

UFC title fights 2025 as structured data. Championship bouts come back with event, date, weight class, both fighters, the winner, the method of victory, round, and time, plus per-fighter strike and takedown stats. Use it to track title changes, build a champions timeline, or feed a betting model with title-fight outcomes. Change the year to cover another season.

## Input

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

## Output

```json
{
  "fightId": {
    "label": "Fight ID",
    "format": "string"
  },
  "eventName": {
    "label": "Event",
    "format": "string"
  },
  "date": {
    "label": "Date",
    "format": "string"
  },
  "promotion": {
    "label": "Promotion",
    "format": "string"
  },
  "weightClass": {
    "label": "Weight Class",
    "format": "string"
  },
  "fighter1Name": {
    "label": "Fighter 1",
    "format": "string"
  },
  "fighter2Name": {
    "label": "Fighter 2",
    "format": "string"
  },
  "winnerName": {
    "label": "Winner",
    "format": "string"
  },
  "method": {
    "label": "Method",
    "format": "string"
  },
  "round": {
    "label": "Round",
    "format": "number"
  },
  "time": {
    "label": "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`).
