Endpoint Playground
Test Crawlora's Yahoo Sports MMA event schedule 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-schedule" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"promotion": "UFC",
"count": 38,
"source_url": "https://sports.yahoo.com/mma/schedule/",
"fetched_at": "2026-08-14T14:00:00Z",
"events": [
{
"id": "combat.e.2144",
"name": "UFC 324: Gaethje vs. Pimblett",
"start_time": "2026-01-25T07:12:00+08:00",
"status": "FINAL"
}
]
}
}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 known UFC event calendar (name, date, status), from Yahoo Sports' own server-rendered MMA schedule page. This endpoint is UFC-only and takes no parameters -- Yahoo's own page does not expose Bellator, PFL, ONE Championship, or other promotions from this URL.
{
"code": 200,
"msg": "OK",
"data": {
"promotion": "UFC",
"count": 38,
"source_url": "https://sports.yahoo.com/mma/schedule/",
"fetched_at": "2026-08-14T14:00:00Z",
"events": [
{
"id": "combat.e.2144",
"name": "UFC 324: Gaethje vs. Pimblett",
"start_time": "2026-01-25T07:12:00+08:00",
"status": "FINAL"
}
]
}
}curl "https://api.crawlora.net/api/v1/yahoo-sports/mma-schedule" \
-H "x-api-key: $CRAWLORA_API_KEY"