Endpoint Playground
Test Crawlora's SofaScore team 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/team?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | Yes | Numeric SofaScore team id |
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://api.sofascore.com/api/v1/team/2817",
"fetched_at": "2026-07-08T16:45:00Z",
"team": {
"id": 2817,
"name": "FC Barcelona",
"short_name": "Barcelona",
"slug": "barcelona",
"country": "Spain",
"sport": "Football",
"manager": "Hans-Dieter Flick",
"venue": "Spotify Camp Nou",
"venue_city": "Barcelona",
"venue_capacity": 105000,
"primary_color": "#154284",
"tournament_id": 8,
"tournament_name": "LaLiga"
}
}
}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 team's detail (identity, manager, venue, primary competition) from SofaScore's credential-free public JSON.
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://api.sofascore.com/api/v1/team/2817",
"fetched_at": "2026-07-08T16:45:00Z",
"team": {
"id": 2817,
"name": "FC Barcelona",
"short_name": "Barcelona",
"slug": "barcelona",
"country": "Spain",
"sport": "Football",
"manager": "Hans-Dieter Flick",
"venue": "Spotify Camp Nou",
"venue_city": "Barcelona",
"venue_capacity": 105000,
"primary_color": "#154284",
"tournament_id": 8,
"tournament_name": "LaLiga"
}
}
}curl "https://api.crawlora.net/api/v1/sofascore/team?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"