Endpoint Playground
Test Crawlora's SofaScore player 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/player?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | Yes | Numeric SofaScore player id |
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://api.sofascore.com/api/v1/player/855833",
"fetched_at": "2026-07-08T16:45:00Z",
"player": {
"id": 855833,
"name": "Ferran Torres",
"short_name": "F. Torres",
"slug": "ferran-torres",
"position": "F",
"jersey_number": "7",
"date_of_birth": "2000-02-29T00:00:00+00:00",
"height": 183,
"country": "Spain",
"preferred_foot": "Right",
"market_value": 54000000,
"market_value_currency": "EUR",
"team": {
"id": 2817,
"name": "FC Barcelona",
"short_name": "Barcelona",
"slug": "barcelona",
"country": "Spain"
}
}
}
}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 player's bio (position, height, market value, current team) from SofaScore's credential-free public JSON.
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://api.sofascore.com/api/v1/player/855833",
"fetched_at": "2026-07-08T16:45:00Z",
"player": {
"id": 855833,
"name": "Ferran Torres",
"short_name": "F. Torres",
"slug": "ferran-torres",
"position": "F",
"jersey_number": "7",
"date_of_birth": "2000-02-29T00:00:00+00:00",
"height": 183,
"country": "Spain",
"preferred_foot": "Right",
"market_value": 54000000,
"market_value_currency": "EUR",
"team": {
"id": 2817,
"name": "FC Barcelona",
"short_name": "Barcelona",
"slug": "barcelona",
"country": "Spain"
}
}
}
}curl "https://api.crawlora.net/api/v1/sofascore/player?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"