Endpoint Playground
Test Crawlora's SofaScore round fixtures 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/sofascore/round-events?id=<id>&season=<season>&round=<round>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | Yes | Numeric SofaScore unique-tournament (competition) id | |
| season | string | Yes | Numeric SofaScore season id | |
| round | integer | Yes | Round number |
{
"code": 200,
"msg": "OK",
"data": {
"tournament_id": 17,
"season_id": 76986,
"round": 1,
"has_next_page": false,
"count": 1,
"source_url": "https://api.sofascore.com/api/v1/unique-tournament/17/season/76986/events/round/1",
"fetched_at": "2026-07-08T16:45:00Z",
"events": [
{
"id": 14025013,
"slug": "bournemouth-liverpool",
"start_timestamp": 1755288000,
"start_time": "2025-08-15T19:00:00Z",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"tournament": {
"id": 52,
"name": "Premier League",
"category": "England",
"unique_tournament_id": 17,
"unique_tournament_name": "Premier League"
},
"home_team": {
"id": 60,
"name": "Bournemouth",
"short_name": "Bournemouth",
"slug": "bournemouth",
"country": "England"
},
"away_team": {
"id": 44,
"name": "Liverpool",
"short_name": "Liverpool",
"slug": "liverpool",
"country": "England"
},
"home_score": {
"current": 2
},
"away_score": {
"current": 4
}
}
]
}
}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 fixtures for one round of a competition season from SofaScore's credential-free public JSON. Get `id` from search and `season` from tournament-seasons.
{
"code": 200,
"msg": "OK",
"data": {
"tournament_id": 17,
"season_id": 76986,
"round": 1,
"has_next_page": false,
"count": 1,
"source_url": "https://api.sofascore.com/api/v1/unique-tournament/17/season/76986/events/round/1",
"fetched_at": "2026-07-08T16:45:00Z",
"events": [
{
"id": 14025013,
"slug": "bournemouth-liverpool",
"start_timestamp": 1755288000,
"start_time": "2025-08-15T19:00:00Z",
"status": {
"code": 100,
"description": "Ended",
"type": "finished"
},
"tournament": {
"id": 52,
"name": "Premier League",
"category": "England",
"unique_tournament_id": 17,
"unique_tournament_name": "Premier League"
},
"home_team": {
"id": 60,
"name": "Bournemouth",
"short_name": "Bournemouth",
"slug": "bournemouth",
"country": "England"
},
"away_team": {
"id": 44,
"name": "Liverpool",
"short_name": "Liverpool",
"slug": "liverpool",
"country": "England"
},
"home_score": {
"current": 2
},
"away_score": {
"current": 4
}
}
]
}
}curl "https://api.crawlora.net/api/v1/sofascore/round-events?id=<id>&season=<season>&round=<round>" \
-H "x-api-key: $CRAWLORA_API_KEY"