# UFC & MMA Fight Cards, Records and Results (`mrdoe/ufc-mma-fight-cards`) Actor

UFC and MMA fight cards by date range: every bout with fighters, records, country, weight class, scheduled rounds, odds, winner and finish round. Upcoming and completed events. Filter by fighter or weight class. No login.

- **URL**: https://apify.com/mrdoe/ufc-mma-fight-cards.md
- **Developed by:** [MrDoe](https://apify.com/mrdoe) (community)
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

## 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.

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 examples already wired to this Actor's own input schema, see the [API](#api) section below.

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`).

# README

![UFC & MMA Fight Cards, Records and Results - UFC fight cards with fighter records, weight classes, odds and results, one row per bout.](https://api.apify.com/v2/key-value-stores/kE36venAoVchGsE6b/records/ufc-mma-fight-cards--hero.png)

### What does UFC & MMA Fight Cards, Records and Results do?

UFC & MMA Fight Cards returns every bout of UFC events in a date range as one row per fight. Each row has the event, date, venue and city, the weight class and scheduled rounds, both fighters with record, wins, losses, draws and country, the odds when posted, and for finished fights the winner and the round and time of the finish. Filter by fighter, weight class or status.

### Why use UFC & MMA Fight Cards, Records and Results?

- Fighter records split into wins, losses and draws, ready for models.
- Upcoming and completed bouts in one schema.
- Filter by fighter name or weight class.
- Venue and city for every card.
- Works logged out; no key needed.

### What makes this different

Fight-card pages mix layout with data. This Actor returns each bout as a flat row with both fighters' parsed records, weight class and result fields, so a card or a whole year of fights is a table you can filter and join.

### How it works

![UFC & MMA Fight Cards, Records and Results workflow: your input, collection, output](https://api.apify.com/v2/key-value-stores/kE36venAoVchGsE6b/records/ufc-mma-fight-cards--how-it-works.png)

1. **Your input** — choose a date range and optional fighter or weight class filters.
2. **The Actor collects it** — the Actor reads the UFC event cards for those dates.
3. **Your output** — you get one clean row per bout with fighters, records, odds and result.

### What data can you extract?

The dataset has 18 fields per row:

| Field | Type | Description |
|---|---|---|
| `eventId` | string | Event identifier. |
| `event` | string | Event name. |
| `eventDate` | string | Event date (ISO 8601). |
| `venue` | string | Venue. |
| `city` | string | City. |
| `country` | string | Country. |
| `boutId` | string | Bout identifier. |
| `weightClass` | string | Weight class. |
| `scheduledRounds` | number | Scheduled rounds. |
| `status` | string | upcoming, live or completed. |
| `fighter1` | object | Name, record, wins, losses, draws, country, winner. |
| `fighter2` | object | Same fields for the second fighter. |
| `winner` | string | Winner for completed bouts. |
| `endRound` | number | Round the fight ended. |
| `endClock` | string | Time of the finish. |
| `odds` | object | Provider and odds line when published. |
| `url` | string | Event page link. |
| `scrapedAt` | string | Collection time (ISO 8601). |

### How to use UFC & MMA Fight Cards, Records and Results

![UFC & MMA Fight Cards, Records and Results input form](https://api.apify.com/v2/key-value-stores/kE36venAoVchGsE6b/records/ufc-mma-fight-cards--input.png)

1. Open the Actor and go to the **Input** tab.
2. Set optional **From** and **To** dates (the default is the next 60 days), add filters if you want, and set **Max bouts**.
3. Optionally set filters and a **Max results** limit.
4. Click **Start**. A default run finishes in under a minute.
5. Open the **Output** tab, then download the dataset or connect it to your tools.

### Input Parameters

| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| `dateFrom` | string | No | — | First day as YYYY-MM-DD. Leave empty for today. |
| `dateTo` | string | No | — | Last day as YYYY-MM-DD. Leave empty for 60 days after the start. |
| `status` | string | No | `"all"` | Return every bout, only upcoming bouts, or only completed bouts. |
| `fighters` | array | No | `[]` | Only bouts involving fighters whose name contains one of these words. |
| `weightClasses` | array | No | `[]` | Only these weight classes, for example Lightweight, Heavyweight, Women's Strawweight. |
| `maxBouts` | integer | No | `5` | Maximum number of bouts returned. Default is 5 for a quick test; set 0 to return every bout in the date range. |
| `proxyConfiguration` | object | No | `{"useApifyProxy":false}` | Optional. The data is public and works without a proxy. |

### Output Data

![UFC & MMA Fight Cards, Records and Results dataset table](https://api.apify.com/v2/key-value-stores/kE36venAoVchGsE6b/records/ufc-mma-fight-cards--output.png)

`fighter1` and `fighter2` each have name, record, wins, losses, draws and country. `winner`, `endRound` and `endClock` are only filled for completed bouts. `odds` is `null` until the bout has published odds.

![UFC & MMA Fight Cards, Records and Results field map of one record](https://api.apify.com/v2/key-value-stores/kE36venAoVchGsE6b/records/ufc-mma-fight-cards--fields.png)

A real dataset item:

```json
{
  "eventId": "600060738",
  "event": "Dana White's Contender Series: Season 10, Week 7",
  "eventDate": "2026-09-22T23:00Z",
  "venue": "Meta APEX",
  "city": "Las Vegas",
  "country": "USA",
  "boutId": "401921412",
  "weightClass": "Light Heavyweight",
  "scheduledRounds": 3,
  "status": "upcoming",
  "fighter1": {
    "id": "5369434",
    "name": "Emilio Quissua",
    "record": "8-0-0",
    "wins": 8,
    "losses": 0,
    "draws": 0,
    "country": "Germany",
    "winner": false
  },
  "fighter2": {
    "id": "5122908",
    "name": "Damian Piwowarczyk",
    "record": "11-4-0",
    "wins": 11,
    "losses": 4,
    "draws": 0,
    "country": "Poland",
    "winner": false
  },
  "winner": null,
  "endRound": null,
  "endClock": null,
  "odds": null,
  "url": "https://www.espn.com/mma/fightcenter/_/id/600060738/league/ufc",
  "scrapedAt": "2026-09-21T11:08:15.079Z"
}
```

### Usage Examples

#### Next 60 days of fights

```json
{
  "maxBouts": 0
}
```

#### Heavyweight bouts this quarter

```json
{
  "weightClasses": [
    "heavyweight"
  ],
  "dateFrom": "2026-10-01",
  "dateTo": "2026-12-31",
  "maxBouts": 0
}
```

#### Fights by one fighter

```json
{
  "fighters": [
    "Topuria"
  ],
  "dateFrom": "2026-01-01",
  "dateTo": "2026-12-31",
  "maxBouts": 0
}
```

### Tips for Best Results

- Default is 5 results for a fast test. Set the max to 0 to return everything available.

### Known Limitations

- Fighter records reflect the last published card; they update after results.
- Odds are only present when published by the source.
- The date window is the range you set; the default covers the next 60 days.
- Only UFC-run events, including its developmental series, are covered.

### Integrations

Run it from the Apify API, on a schedule, or from a webhook. Send results straight to Google Sheets, Make, Zapier, Slack or your own database with Apify's built-in integrations.

### Export Formats

Download the dataset as JSON, CSV, Excel, XML, HTML table or RSS from the **Output** tab or the API.

### Frequently Asked Questions

#### Does it need an account or API key?

No. The Actor reads public data and needs no account or key.

#### Am I charged for failed results?

No. You are only charged for results that are written to the dataset.

#### Do I need an account or login?

No. The Actor reads public data and needs no account or key.

#### Am I charged for failed runs or empty results?

You are only charged for results that are actually written to the dataset.

#### Can I run it on a schedule?

Yes. Create a Task with your input and add a schedule in Apify Console. With monitor mode on, each scheduled run returns only what changed since the previous one.

### Support

Questions or a missing field? Open an issue from the **Issues** tab on this Actor's page and it will be looked at.

### Legal / Responsible Use

You are responsible for using the data in line with the source's terms and applicable law. The Actor collects publicly available data only and is not affiliated with the source.

# Actor input Schema

## `dateFrom` (type: `string`):

First day as YYYY-MM-DD. Leave empty for today.

## `dateTo` (type: `string`):

Last day as YYYY-MM-DD. Leave empty for 60 days after the start.

## `status` (type: `string`):

Return every bout, only upcoming bouts, or only completed bouts.

## `fighters` (type: `array`):

Only bouts involving fighters whose name contains one of these words.

## `weightClasses` (type: `array`):

Only these weight classes, for example Lightweight, Heavyweight, Women's Strawweight.

## `maxBouts` (type: `integer`):

Maximum number of bouts returned. Default is 5 for a quick test; set 0 to return every bout in the date range.

## `proxyConfiguration` (type: `object`):

Optional. The data is public and works without a proxy.

## Actor input object example

```json
{
  "status": "all",
  "fighters": [],
  "weightClasses": [],
  "maxBouts": 5,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "maxBouts": 5
};

// Run the Actor and wait for it to finish
const run = await client.actor("mrdoe/ufc-mma-fight-cards").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "maxBouts": 5 }

# Run the Actor and wait for it to finish
run = client.actor("mrdoe/ufc-mma-fight-cards").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "maxBouts": 5
}' |
apify call mrdoe/ufc-mma-fight-cards --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,mrdoe/ufc-mma-fight-cards"
        }
    }
}
```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/p3M47s3ZEwFTge44b/builds/QLVumSEi0djK4jCp2/openapi.json
