Endpoint Playground
Test Crawlora's SofaScore event odds 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/event-odds?id=14025013" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | Yes | 14025013 | Numeric SofaScore event (match) id |
{
"code": 200,
"msg": "OK",
"data": {
"event_id": 14025013,
"count": 1,
"source_url": "https://api.sofascore.com/api/v1/event/14025013/odds/1/all",
"fetched_at": "2026-07-08T16:45:00Z",
"markets": [
{
"name": "Full time",
"group": "1X2",
"period": "Full-time",
"choices": [
{
"name": "1",
"value": "29/100",
"winning": true
},
{
"name": "X",
"value": "13/2"
},
{
"name": "2",
"value": "9/2"
}
]
}
]
}
}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 match's betting markets and choices from SofaScore's credential-free public JSON. Returns 404 when SofaScore has no odds for the match.
{
"code": 200,
"msg": "OK",
"data": {
"event_id": 14025013,
"count": 1,
"source_url": "https://api.sofascore.com/api/v1/event/14025013/odds/1/all",
"fetched_at": "2026-07-08T16:45:00Z",
"markets": [
{
"name": "Full time",
"group": "1X2",
"period": "Full-time",
"choices": [
{
"name": "1",
"value": "29/100",
"winning": true
},
{
"name": "X",
"value": "13/2"
},
{
"name": "2",
"value": "9/2"
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/sofascore/event-odds?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"