Base URL: https://skyprovider.cc/api/v2
Time Zone: All timestamps are in Indian Standard Time (IST, UTC+5:30)
WebSocket: wss://skyprovider.cc/ws/allwhitelabel
Real-time unified API providing Sports + Casino + Live Odds + Live Video data.
All data is refreshed continuously: odds every 15s, casino every 60s, sports/fixtures every 5 minutes.
/live/aggregateReturns all data types in a single call.
GET https://skyprovider.cc/api/v2/live/aggregate
GET https://skyprovider.cc/api/v2/live/aggregate?exchange=lordsexch
{
"success": true,
"data": {
"meta": {
"exchange": "all",
"timestamp": "2026-05-21T14:09:16.193+05:30",
"refreshIntervals": {
"odds": "15s",
"casino": "60s",
"sports": "5min",
"fixtures": "5min",
"inplay": "15s"
}
},
"stats": {
"running": true,
"totalOdds": 10,
"totalCasino": 330,
"totalFixtures": 10
},
"sports": { "lordsexch": [ { "id": "4", "name": "Sport 4", "eventCount": 1 } ] },
"casino": { "lordsexch": [ { "casino": "Teenpatti 1-day", "gtype": "Teen" } ] },
"fixtures": { "lordsexch": [ { "eid": 530263636, "ename": "Gujarat Titans v Chennai Super Kings" } ] },
"inplay": { ... }
}
}
/live/sports/rawAll sports with their fixtures.
GET https://skyprovider.cc/api/v2/live/sports/raw
/live/sports/:sportIdFixtures for a specific sport.
GET https://skyprovider.cc/api/v2/live/sports/4
/live/match/:eventIdMatch detail by event ID.
GET https://skyprovider.cc/api/v2/live/match/530263636?exchange=lordsexch
/live/casino/:gtype/:casinoCasino game detail (cache-based).
GET https://skyprovider.cc/api/v2/live/casino/Teen/Teenpatti%201-day?exchange=lordsexch
/live/casino/:gtype/:casino/detailCasino game detail containing chip button settings, live market IDs (getmid), cards dealt, round information, and direct live video stream paths (both iframe embeds and raw streams).
GET https://skyprovider.cc/api/v2/live/casino/teenpatti/TeenPatti%20T20/detail?exchange=lordsexch
{
"success": true,
"data": {
"exchange": "lordsexch",
"gtype": "teenpatti",
"casino": "TeenPatti T20",
"source": "api",
"api": {
"buttonlist": [
{ "id": 1, "value": 100 },
{ "id": 2, "value": 500 },
{ "id": 3, "value": 1000 }
],
"getmid": {
"mid": "1.240604112233",
"gtype": "teenpatti",
"casinoName": "TeenPatti T20",
"eventName": "TeenPatti T20"
},
"detail": {
"roundId": "260604153022",
"cards": "H1,S10,D13",
"status": "active"
}
},
"video": {
"iframe": "https://lordsadmin.external247services.com/video/teenpatti/TeenPatti%20T20",
"stream": "https://lordsadmin.external247services.com/live-video/teenpatti/TeenPatti%20T20"
}
},
"timestamp": "2026-06-04T01:37:15.123+05:30"
}
ℹ️ Developer Note:
video.iframeshould be used inside an HTML<iframe>element to embed the real-time video stream of the live dealer on the user's interface.api.getmid.midprovides the unique market ID (getmid) required to place and resolve bets on the target round.- The
api.detail.roundIdindicates the current game round number.
/live/fixturesUpcoming matches.
GET https://skyprovider.cc/api/v2/live/fixtures
/live/inplayIn-play matches.
GET https://skyprovider.cc/api/v2/live/inplay
/live/statsEngine statistics.
GET https://skyprovider.cc/api/v2/live/stats
/live/allRaw hot cache dump.
GET https://skyprovider.cc/api/v2/live/all
wss://skyprovider.cc/ws/allwhitelabel
wss://skyprovider.cc/ws/allwhitelabel{ "action": "subscribe", "exchange": "lordsexch" }{
"type": "odds",
"exchange": "lordsexch",
"data": [ ... ],
"timestamp": "2026-05-21T14:09:16.193+05:30"
}
| Endpoint | Description |
|---|---|
GET /api/v2/events/{eventId}/live-tv | Event live TV stream |
GET /api/v2/proxy/live-tv/{eventId} | Proxied live TV stream |
GET /api/v2/embed/live-tv/{eventId} | Embed-friendly live TV |
| Error | Cause | Fix |
|---|---|---|
Exchange not available | Exchange session not ready | Wait 30s and retry |
Fixture not found | Event ID not in cache | Check /live/fixtures for valid IDs |
Endpoint not found | Wrong API version prefix | Use /api/v2/ not /api/ |
GET https://skyprovider.cc/api/v2/live/stats
curl https://skyprovider.cc/api/v2/live/aggregate
curl https://skyprovider.cc/api/v2/live/aggregate?exchange=lordsexch
curl https://skyprovider.cc/api/v2/live/sports/4
curl https://skyprovider.cc/api/v2/live/match/530263636?exchange=lordsexch
curl https://skyprovider.cc/api/v2/live/casino
curl "https://skyprovider.cc/api/v2/live/casino/Teen/Teenpatti%201-day/detail?exchange=lordsexch"
curl https://skyprovider.cc/api/v2/events/530263636/live-tv