Endpoint Playground
Test Crawlora's SofaScore event lineups 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-lineups?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,
"confirmed": true,
"source_url": "https://api.sofascore.com/api/v1/event/14025013/lineups",
"fetched_at": "2026-07-08T16:45:00Z",
"home": {
"formation": "4-3-3",
"players": [
{
"player": {
"id": 66101,
"name": "Alisson",
"short_name": "Alisson",
"position": "G",
"country": "Brazil"
},
"jersey_number": "1",
"position": "G",
"substitute": false
}
]
},
"away": {
"formation": "4-4-2",
"players": []
}
}
}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 starting XI and substitutes per side, with formation, from SofaScore's credential-free public JSON. Returns 404 when SofaScore has no lineups for the match.
{
"code": 200,
"msg": "OK",
"data": {
"event_id": 14025013,
"confirmed": true,
"source_url": "https://api.sofascore.com/api/v1/event/14025013/lineups",
"fetched_at": "2026-07-08T16:45:00Z",
"home": {
"formation": "4-3-3",
"players": [
{
"player": {
"id": 66101,
"name": "Alisson",
"short_name": "Alisson",
"position": "G",
"country": "Brazil"
},
"jersey_number": "1",
"position": "G",
"substitute": false
}
]
},
"away": {
"formation": "4-4-2",
"players": []
}
}
}curl "https://api.crawlora.net/api/v1/sofascore/event-lineups?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"