Match Polls
GET /api/v1/polls
GET /api/v1/polls?sport=football
| Param | Type | Default | Description |
|---|---|---|---|
sport | string | (all) | Sport slug |
league | string | (all) | League slug |
category | string | (all) | Category slug |
{
"polls": [
{
"match_id": 9791299,
"ht": "Chicago Fire",
"at": "Nashville FC",
"home_votes": 45,
"draw_votes": 25,
"away_votes": 30,
"total_votes": 100
}
]
}
Top Tipsters
GET /api/v1/tipsters
GET /api/v1/tipsters?sportId=1&leagueId=1&limit=10
| Param | Type | Default | Description |
|---|---|---|---|
sportId | number | 1 | Sport ID |
leagueId | number | — | Optional league filter |
limit | number | 10 | Max tipsters returned |
{
"tipsters": [
{ "id": 123, "username": "ProTipster", "profit": 45.2, "roi": 12.5, "win_rate": 65.3, "tips_count": 200 }
]
}
News / Blog Posts
GET /api/v1/news
GET /api/v1/news?sport=football&page=1&perPage=10
| Param | Default | Description |
|---|---|---|
sport | (all) | Filter by sport slug |
page | 1 | Page number |
perPage | 10 | Items per page |
{
"totalPosts": 570,
"totalPages": 190,
"currentPage": 1,
"posts": [
{
"id": 4942,
"slug": "england-world-cup-squad-odds",
"title": "England World Cup Starting XI Odds & Predicted Lineup vs Croatia",
"excerpt": "See the latest England World Cup Starting XI odds...",
"created_at": "2026-06-11T09:26:21+00:00",
"thumbnail": { "url": "https://..." },
"main_category": { "name": "Football", "slug": "football" },
"tags": ["world-cup", "england"],
"view_count": 1234
}
]
}
Example
curl -H "x-api-key: YOUR_API_KEY" \
"https://api.sportsapipro.com/v4/football/news?sport=football&perPage=5"