Endpoint Playground
Test Crawlora's SofaScore competition seasons 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/tournament-seasons?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | Yes | Numeric SofaScore unique-tournament (competition) id |
{
"code": 200,
"msg": "OK",
"data": {
"tournament_id": 17,
"count": 2,
"source_url": "https://api.sofascore.com/api/v1/unique-tournament/17/seasons",
"fetched_at": "2026-07-08T16:45:00Z",
"seasons": [
{
"id": 96668,
"name": "Premier League 26/27",
"year": "26/27"
},
{
"id": 76986,
"name": "Premier League 25/26",
"year": "25/26"
}
]
}
}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 season list for a competition from SofaScore's credential-free public JSON. Use a returned season id with the standings and round-events endpoints.
{
"code": 200,
"msg": "OK",
"data": {
"tournament_id": 17,
"count": 2,
"source_url": "https://api.sofascore.com/api/v1/unique-tournament/17/seasons",
"fetched_at": "2026-07-08T16:45:00Z",
"seasons": [
{
"id": 96668,
"name": "Premier League 26/27",
"year": "26/27"
},
{
"id": 76986,
"name": "Premier League 25/26",
"year": "25/26"
}
]
}
}curl "https://api.crawlora.net/api/v1/sofascore/tournament-seasons?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"