Endpoint Playground
Test Crawlora's SofaScore event head-to-head 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-h2h?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/h2h",
"fetched_at": "2026-07-08T16:45:00Z",
"team_duel": {
"home_wins": 8,
"away_wins": 2,
"draws": 0
},
"manager_duel": {
"home_wins": 3,
"away_wins": 1,
"draws": 0
}
}
}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 historical head-to-head win/draw record between a match's two teams (and managers, when available) from SofaScore's credential-free public JSON.
{
"code": 200,
"msg": "OK",
"data": {
"event_id": 14025013,
"source_url": "https://api.sofascore.com/api/v1/event/14025013/h2h",
"fetched_at": "2026-07-08T16:45:00Z",
"team_duel": {
"home_wins": 8,
"away_wins": 2,
"draws": 0
},
"manager_duel": {
"home_wins": 3,
"away_wins": 1,
"draws": 0
}
}
}curl "https://api.crawlora.net/api/v1/sofascore/event-h2h?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"