# UFC Paris 2026 fight and round statistics

**Use case:** 

Export fight and round statistics for UFC Fight Night: Hooker vs. Parnasse in Paris. Rows include both fighters, event date and location, with optional fight totals. Download CSV or JSON.

## Input

```json
{
  "eventUrls": [
    "http://www.ufcstats.com/event-details/2144954270be834d"
  ],
  "includeTotals": true,
  "maxFights": 50
}
```

## Output

```json
{
  "recordType": {
    "label": "Row type"
  },
  "rowKey": {
    "label": "Row key (fight:fighter:scope:round)"
  },
  "fightId": {
    "label": "Fight ID (16 hex)"
  },
  "fightUrl": {
    "label": "Fight URL"
  },
  "eventId": {
    "label": "Event ID (16 hex)"
  },
  "eventName": {
    "label": "Event name"
  },
  "eventDate": {
    "label": "Event date (YYYY-MM-DD)"
  },
  "eventLocation": {
    "label": "Event location"
  },
  "fighterId": {
    "label": "Fighter ID (16 hex)"
  },
  "fighterName": {
    "label": "Fighter"
  },
  "opponentId": {
    "label": "Opponent ID (16 hex)"
  },
  "opponentName": {
    "label": "Opponent"
  },
  "result": {
    "label": "Result (the page's own symbol)"
  },
  "weightClass": {
    "label": "Weight class (as printed)"
  },
  "method": {
    "label": "Method (as printed)"
  },
  "methodDetail": {
    "label": "Method detail (raw)"
  },
  "endRound": {
    "label": "End round"
  },
  "endTime": {
    "label": "End time (M:SS as printed)"
  },
  "timeFormat": {
    "label": "Time format (as printed)"
  },
  "referee": {
    "label": "Referee"
  },
  "scope": {
    "label": "Scope (round / total)"
  },
  "round": {
    "label": "Round (1-based; null on a total row)"
  },
  "knockdowns": {
    "label": "Knockdowns (count)"
  },
  "sigStrikesLanded": {
    "label": "Significant strikes landed (count)"
  },
  "sigStrikesAttempted": {
    "label": "Significant strikes attempted (count)"
  },
  "totalStrikesLanded": {
    "label": "Total strikes landed (count)"
  },
  "totalStrikesAttempted": {
    "label": "Total strikes attempted (count)"
  },
  "takedownsLanded": {
    "label": "Takedowns landed (count)"
  },
  "takedownsAttempted": {
    "label": "Takedowns attempted (count)"
  },
  "submissionAttempts": {
    "label": "Submission attempts (count)"
  },
  "reversals": {
    "label": "Reversals (count)"
  },
  "controlTimeSeconds": {
    "label": "Control time (seconds)"
  },
  "headLanded": {
    "label": "Head significant strikes landed (count)"
  },
  "headAttempted": {
    "label": "Head significant strikes attempted (count)"
  },
  "bodyLanded": {
    "label": "Body significant strikes landed (count)"
  },
  "bodyAttempted": {
    "label": "Body significant strikes attempted (count)"
  },
  "legLanded": {
    "label": "Leg significant strikes landed (count)"
  },
  "legAttempted": {
    "label": "Leg significant strikes attempted (count)"
  },
  "distanceLanded": {
    "label": "Significant strikes landed at distance (count)"
  },
  "distanceAttempted": {
    "label": "Significant strikes attempted at distance (count)"
  },
  "clinchLanded": {
    "label": "Significant strikes landed in the clinch (count)"
  },
  "clinchAttempted": {
    "label": "Significant strikes attempted in the clinch (count)"
  },
  "groundLanded": {
    "label": "Significant strikes landed on the ground (count)"
  },
  "groundAttempted": {
    "label": "Significant strikes attempted on the ground (count)"
  },
  "scrapedAt": {
    "label": "Scraped at (UTC)"
  }
}
```

## About this Actor

This example demonstrates how to use [UFCStats Fight & Round Stats](https://apify.com/danthedataman/ufcstats-fight-round-stats.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/danthedataman/ufcstats-fight-round-stats.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/danthedataman/ufcstats-fight-round-stats.md

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
