Fixtures
Browse upcoming MMA fixtures. Each fixture includes competitor details, scheduling, fight format, and whether live odds will be delivered to your platform.
Fixtures Endpoint
Query upcoming fixture IDs and metadata to see which matches will receive live odds.
Request
GET /v1/liveodds/{partnerId}/fixtures
Authorization: Bearer {access_token}Response format
The response includes a fixtures array with match IDs, competitor info, tournament details, and an is_liveodds flag indicating whether live odds will be delivered for the fight.
Response Example
A sample fixture response payload.
Fixtures response
{
"time": "2026-03-26T12:28:08.693Z",
"fixtures": [
{
"fixture": {
"id": "match:69265732"
},
"status": "MATCH_STATUS_ON",
"start_time": "2026-03-28T23:40:00.000Z",
"neutral_ground": true,
"sport": "MIXED_MARTIAL_ARTS",
"competitors": [
{
"competitor": {
"id": "competitor:1331148"
},
"name": "POSTARNAKOVA, TATIANA"
},
{
"competitor": {
"id": "competitor:1244317"
},
"name": "DANA, ELORA"
}
],
"category": {
"id": "category:1095",
"name": "PFL"
},
"tournament": {
"id": "tournament:50928",
"name": "PFL Pittsburgh: Eblen vs. Battle",
"competitor_gender": "MIXED"
},
"coverages": [],
"is_liveodds": true,
"payload": {
"format": "Women's Strawweight",
"scheduled_length": 3,
"main_event_flag": false
}
},
{
"fixture": {
"id": "match:69750670"
},
"status": "MATCH_STATUS_ON",
"start_time": "2026-03-28T21:00:00.000Z",
"neutral_ground": true,
"sport": "MIXED_MARTIAL_ARTS",
"competitors": [
{
"competitor": {
"id": "competitor:1186153"
},
"name": "THAINARA, ALEXIA"
},
{
"competitor": {
"id": "competitor:938359"
},
"name": "BRASIL, BRUNA"
}
],
"category": {
"id": "category:1089",
"name": "UFC"
},
"tournament": {
"id": "tournament:50250",
"name": "UFC Fight Night: Adesanya vs. Pyfer",
"competitor_gender": "MIXED"
},
"coverages": [],
"is_liveodds": true,
"payload": {
"format": "Lightweight",
"scheduled_length": 3,
"main_event_flag": false
}
},
{
"fixture": {
"id": "match:69265728"
},
"status": "MATCH_STATUS_ON",
"start_time": "2026-03-28T23:00:00.000Z",
"neutral_ground": true,
"sport": "MIXED_MARTIAL_ARTS",
"competitors": [
{
"competitor": {
"id": "competitor:1274208"
},
"name": "GOSS, ETHAN"
},
{
"competitor": {
"id": "competitor:1241405"
},
"name": "DUPRAS, FRED"
}
],
"category": {
"id": "category:1095",
"name": "PFL"
},
"tournament": {
"id": "tournament:50928",
"name": "PFL Pittsburgh: Eblen vs. Battle",
"competitor_gender": "MIXED"
},
"coverages": [],
"is_liveodds": true,
"payload": {
"format": "Light Heavyweight",
"scheduled_length": 3,
"main_event_flag": false
}
},
{
"fixture": {
"id": "match:69869758"
},
"status": "MATCH_STATUS_ON",
"start_time": "2026-03-28T23:00:00.000Z",
"neutral_ground": true,
"sport": "MIXED_MARTIAL_ARTS",
"competitors": [
{
"competitor": {
"id": "competitor:661805"
},
"name": "BAHAMONDES, IGNACIO"
},
{
"competitor": {
"id": "competitor:526387"
},
"name": "MUSAYEV, TOFIQ"
}
],
"category": {
"id": "category:1089",
"name": "UFC"
},
"tournament": {
"id": "tournament:50250",
"name": "UFC Fight Night: Adesanya vs. Pyfer",
"competitor_gender": "MIXED"
},
"coverages": [],
"is_liveodds": true,
"payload": {
"format": "Flyweight",
"scheduled_length": 3,
"main_event_flag": false
}
},
{
"fixture": {
"id": "match:69970488"
},
"status": "MATCH_STATUS_ON",
"start_time": "2026-03-28T22:20:00.000Z",
"neutral_ground": true,
"sport": "MIXED_MARTIAL_ARTS",
"competitors": [
{
"competitor": {
"id": "competitor:250173"
},
"name": "TYBURA, MARCIN"
},
{
"competitor": {
"id": "competitor:406679"
},
"name": "FORTUNE, TYRELL"
}
],
"category": {
"id": "category:1089",
"name": "UFC"
},
"tournament": {
"id": "tournament:50250",
"name": "UFC Fight Night: Adesanya vs. Pyfer",
"competitor_gender": "MIXED"
},
"coverages": [],
"is_liveodds": true,
"payload": {
"format": "Featherweight",
"scheduled_length": 3,
"main_event_flag": false
}
},
{
"fixture": {
"id": "match:68836878"
},
"status": "MATCH_STATUS_ON",
"start_time": "2026-03-28T21:40:00.000Z",
"neutral_ground": true,
"sport": "MIXED_MARTIAL_ARTS",
"competitors": [
{
"competitor": {
"id": "competitor:1183443"
},
"name": "STIRLING, NAVAJO"
},
{
"competitor": {
"id": "competitor:1015839"
},
"name": "LOPES, BRUNO"
}
],
"category": {
"id": "category:1089",
"name": "UFC"
},
"tournament": {
"id": "tournament:50250",
"name": "UFC Fight Night: Adesanya vs. Pyfer",
"competitor_gender": "MIXED"
},
"coverages": [],
"is_liveodds": false,
"payload": {
"format": "Strawweight",
"scheduled_length": 3,
"main_event_flag": false
}
}
]
}