Endpoint Playground
Test Crawlora's SofaScore standings 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/standings?id=<id>&season=<season>&type=total" \
-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 | |
| type | string | Yes | total | Standings variant |
{
"code": 200,
"msg": "OK",
"data": {
"tournament_id": 17,
"season_id": 76986,
"type": "total",
"source_url": "https://api.sofascore.com/api/v1/unique-tournament/17/season/76986/standings/total",
"fetched_at": "2026-07-08T16:45:00Z",
"groups": [
{
"name": "Premier League",
"rows": [
{
"position": 1,
"team": {
"id": 17,
"name": "Liverpool",
"short_name": "Liverpool",
"slug": "liverpool",
"country": "England"
},
"matches": 38,
"wins": 30,
"draws": 5,
"losses": 3,
"scores_for": 90,
"scores_against": 30,
"points": 95,
"promotion": "Champions League"
}
]
}
]
}
}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 a league table for a competition season from SofaScore's credential-free public JSON. The `type` enum accepts `total`, `home`, and `away`. Get `id` from search and `season` from tournament-seasons.
{
"code": 200,
"msg": "OK",
"data": {
"tournament_id": 17,
"season_id": 76986,
"type": "total",
"source_url": "https://api.sofascore.com/api/v1/unique-tournament/17/season/76986/standings/total",
"fetched_at": "2026-07-08T16:45:00Z",
"groups": [
{
"name": "Premier League",
"rows": [
{
"position": 1,
"team": {
"id": 17,
"name": "Liverpool",
"short_name": "Liverpool",
"slug": "liverpool",
"country": "England"
},
"matches": 38,
"wins": 30,
"draws": 5,
"losses": 3,
"scores_for": 90,
"scores_against": 30,
"points": 95,
"promotion": "Champions League"
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/sofascore/standings?id=<id>&season=<season>&type=<type>" \
-H "x-api-key: $CRAWLORA_API_KEY"