Endpoint Playground
Test Crawlora's SofaScore event statistics 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/event-statistics?id=14025013" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | Yes | 14025013 | Numeric SofaScore event (match) id |
{
"code": 200,
"msg": "OK",
"data": {
"event_id": 14025013,
"source_url": "https://api.sofascore.com/api/v1/event/14025013/statistics",
"fetched_at": "2026-07-08T16:45:00Z",
"periods": [
{
"period": "ALL",
"groups": [
{
"name": "Match overview",
"items": [
{
"name": "Ball possession",
"key": "ballPossession",
"home": "61%",
"away": "39%"
}
]
}
]
}
]
}
}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 one match's statistics (possession, shots, passes, and more, grouped and split by period) from SofaScore's credential-free public JSON. Returns 404 when SofaScore has no tracked statistics for the match.
{
"code": 200,
"msg": "OK",
"data": {
"event_id": 14025013,
"source_url": "https://api.sofascore.com/api/v1/event/14025013/statistics",
"fetched_at": "2026-07-08T16:45:00Z",
"periods": [
{
"period": "ALL",
"groups": [
{
"name": "Match overview",
"items": [
{
"name": "Ball possession",
"key": "ballPossession",
"home": "61%",
"away": "39%"
}
]
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/sofascore/event-statistics?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"