Endpoint Playground
Test Crawlora's Yahoo Sports MMA fight card API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/yahoo-sports/mma-fight-card" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"promotion": "UFC",
"event": {
"id": "",
"name": "UFC 330: Makhachev vs. Machado Garry 2026"
},
"count": 12,
"source_url": "https://sports.yahoo.com/mma/schedule/",
"fetched_at": "2026-08-14T14:00:00Z",
"fights": [
{
"id": "combat.g.13595637",
"weight_class": "Welterweight",
"status": "PREGAME",
"start_time": "2026-08-16T10:30:00+08:00",
"fighter_one": {
"id": "combat.p.2367504",
"name": "Islam Makhachev",
"record": "28-1-0",
"rank": 0,
"country": "Russia",
"fighting_out_of": "Russia"
},
"fighter_two": {
"id": "combat.p.2904750",
"name": "Ian Machado Garry",
"record": "17-1-0",
"rank": 1,
"country": "Ireland",
"fighting_out_of": "Ireland"
}
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns the current/next UFC event's full fight card (each bout's fighters, records, rankings, weight class, and card position), from Yahoo Sports' own server-rendered MMA schedule page. This endpoint takes no parameters -- it always returns whichever event Yahoo currently features as next up, not a caller-selected one.
{
"code": 200,
"msg": "OK",
"data": {
"promotion": "UFC",
"event": {
"id": "",
"name": "UFC 330: Makhachev vs. Machado Garry 2026"
},
"count": 12,
"source_url": "https://sports.yahoo.com/mma/schedule/",
"fetched_at": "2026-08-14T14:00:00Z",
"fights": [
{
"id": "combat.g.13595637",
"weight_class": "Welterweight",
"status": "PREGAME",
"start_time": "2026-08-16T10:30:00+08:00",
"fighter_one": {
"id": "combat.p.2367504",
"name": "Islam Makhachev",
"record": "28-1-0",
"rank": 0,
"country": "Russia",
"fighting_out_of": "Russia"
},
"fighter_two": {
"id": "combat.p.2904750",
"name": "Ian Machado Garry",
"record": "17-1-0",
"rank": 1,
"country": "Ireland",
"fighting_out_of": "Ireland"
}
}
]
}
}curl "https://api.crawlora.net/api/v1/yahoo-sports/mma-fight-card" \
-H "x-api-key: $CRAWLORA_API_KEY"