Endpoint Playground
Test Crawlora's SofaScore search 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/search?q=barcelona" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | barcelona | Free-text search query |
{
"code": 200,
"msg": "OK",
"data": {
"query": "barcelona",
"count": 2,
"source_url": "https://api.sofascore.com/api/v1/search/all?q=barcelona",
"fetched_at": "2026-07-08T16:45:00Z",
"results": [
{
"type": "team",
"id": 2817,
"name": "FC Barcelona",
"slug": "barcelona",
"sport": "Football",
"country": "Spain"
},
{
"type": "player",
"id": 1102841,
"name": "Alejandro Balde",
"slug": "alejandro-balde",
"team_id": 2817,
"team_name": "FC Barcelona"
}
]
}
}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.
Searches SofaScore's credential-free public JSON for teams, players, and competitions matching a free-text query. An empty `results` list is a valid response when nothing matches.
{
"code": 200,
"msg": "OK",
"data": {
"query": "barcelona",
"count": 2,
"source_url": "https://api.sofascore.com/api/v1/search/all?q=barcelona",
"fetched_at": "2026-07-08T16:45:00Z",
"results": [
{
"type": "team",
"id": 2817,
"name": "FC Barcelona",
"slug": "barcelona",
"sport": "Football",
"country": "Spain"
},
{
"type": "player",
"id": 1102841,
"name": "Alejandro Balde",
"slug": "alejandro-balde",
"team_id": 2817,
"team_name": "FC Barcelona"
}
]
}
}curl "https://api.crawlora.net/api/v1/sofascore/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"