Endpoint Playground
Test Crawlora's SofaScore live events 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/live-events?sport=football" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| sport | string | Yes | football | Sport key |
{
"code": 200,
"msg": "OK",
"data": {
"sport": "football",
"count": 1,
"source_url": "https://api.sofascore.com/api/v1/sport/football/events/live",
"fetched_at": "2026-07-08T16:45:00Z",
"events": [
{
"id": 16467444,
"slug": "pfc-cska-ii-sofia-fc-marek-1915-dupnitsa",
"start_timestamp": 1751980800,
"start_time": "2026-07-08T12:00:00Z",
"status": {
"code": 6,
"description": "1st half",
"type": "inprogress"
},
"tournament": {
"id": 1339,
"name": "Club Friendly Games",
"category": "World",
"unique_tournament_id": 853,
"unique_tournament_name": "Club Friendly Games"
},
"home_team": {
"id": 1,
"name": "PFC CSKA II Sofia",
"short_name": "CSKA II Sofia",
"slug": "pfc-cska-ii-sofia",
"country": "Bulgaria"
},
"away_team": {
"id": 2,
"name": "FC Marek 1915 Dupnitsa",
"short_name": "Marek Dupnitsa",
"slug": "fc-marek-1915-dupnitsa",
"country": "Bulgaria"
},
"home_score": {
"current": 0
},
"away_score": {
"current": 1
}
}
]
}
}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 currently live events for a sport from SofaScore's credential-free public JSON. The `sport` enum accepts `football`, `basketball`, and `tennis`. An empty `events` list is a valid response when nothing is live right now.
{
"code": 200,
"msg": "OK",
"data": {
"sport": "football",
"count": 1,
"source_url": "https://api.sofascore.com/api/v1/sport/football/events/live",
"fetched_at": "2026-07-08T16:45:00Z",
"events": [
{
"id": 16467444,
"slug": "pfc-cska-ii-sofia-fc-marek-1915-dupnitsa",
"start_timestamp": 1751980800,
"start_time": "2026-07-08T12:00:00Z",
"status": {
"code": 6,
"description": "1st half",
"type": "inprogress"
},
"tournament": {
"id": 1339,
"name": "Club Friendly Games",
"category": "World",
"unique_tournament_id": 853,
"unique_tournament_name": "Club Friendly Games"
},
"home_team": {
"id": 1,
"name": "PFC CSKA II Sofia",
"short_name": "CSKA II Sofia",
"slug": "pfc-cska-ii-sofia",
"country": "Bulgaria"
},
"away_team": {
"id": 2,
"name": "FC Marek 1915 Dupnitsa",
"short_name": "Marek Dupnitsa",
"slug": "fc-marek-1915-dupnitsa",
"country": "Bulgaria"
},
"home_score": {
"current": 0
},
"away_score": {
"current": 1
}
}
]
}
}curl "https://api.crawlora.net/api/v1/sofascore/live-events?sport=<sport>" \
-H "x-api-key: $CRAWLORA_API_KEY"