lvbet.pl APIlvbet.pl ↗
Monitor betting odds and sports markets from LVBet.pl by browsing available sports categories, viewing upcoming matches, and accessing detailed odds across different betting markets. Get real-time odds data to compare betting options and track market movements for your preferred sports events.
curl -X GET 'https://api.parse.bot/scraper/d64342a4-b7f2-41f1-8f37-88781c3d54b1/list_sports_groups' \ -H 'X-API-Key: $PARSE_API_KEY'
List sports groups (sports, regions, competitions) in LVBet's hierarchy. Use parent_id=null to get top-level sports, then use a sports_group_id as parent_id to drill into sub-categories (e.g. Football → England → Premier League).
| Param | Type | Description |
|---|---|---|
| lang | string | Language code for labels. |
| parent_id | string | Parent sports group ID to list children of. Use 'null' for top-level sports categories, or a numeric ID like '78674' to get sub-groups. |
{
"type": "object",
"fields": {
"total": "integer",
"sports_groups": "array of sports group objects with id, name, label, parent_id, prematch_count, live_count, order"
},
"sample": {
"data": {
"total": 156,
"sports_groups": [
{
"name": "Football",
"label": "Football",
"order": 1,
"parent_id": null,
"live_count": 0,
"prematch_count": 335,
"sports_group_id": 1
},
{
"name": "Tennis",
"label": "Tennis",
"order": 2,
"parent_id": null,
"live_count": 0,
"prematch_count": 262,
"sports_group_id": 4
}
]
},
"status": "success"
}
}About the lvbet.pl API
The lvbet.pl API on Parse exposes 3 endpoints for the publicly available data on lvbet.pl. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.