Live & Schedule Endpoints (7)
All endpoints use base URL https://v2.snooker.sportsapipro.com.
GET /api/live # Curated live matches (player names, frame scores)
GET /api/live/all # Raw live data
GET /api/today # Today's scheduled matches
GET /api/schedule/:date # Schedule by date (YYYY-MM-DD)
GET /api/live-tournaments # Tournaments with live matches
GET /api/scheduled-tournaments/:date # Tournaments with matches on date
GET /api/newly-added-events # Recently added matches
Search & Discovery Endpoints (7)
GET /api/search?q=ronnie # Search players, tournaments
GET /api/countries # Categories (International)
GET /api/countries/all # Extended categories
GET /api/categories/:categoryId/tournaments # Tournaments in category
GET /api/trending-players # Trending snooker players
GET /api/news?lang=en # Snooker news
GET /api/country/:code/flag # Country flag URL
Example: Find Live Matches
curl -H "x-api-key: YOUR_API_KEY" \
https://v2.snooker.sportsapipro.com/api/live
Example: Browse All Snooker Tournaments
curl -H "x-api-key: YOUR_API_KEY" \
"https://v2.snooker.sportsapipro.com/api/categories/55/tournaments"
Snooker uses a single International category (ID: 55) — all World Snooker Tour ranking events fall under this one category.