Every pick and the whole record, as open JSON. No key required.
Every prediction MalluSports publishes, plus the full settled record, is available as free JSON. No key, no account, no rate limit, CORS open to everyone. Use it in your app, your bot, your dissertation or your own tipping site.
Licence: CC BY 4.0. Use it commercially if you like — the only condition is a visible link back to mallusports.pro.
| Endpoint | Returns |
|---|---|
/api/v1/today.json | Today's published picks — league, teams, kickoff, market, selection, odds, confidence band |
/api/v1/history.json | Every settled pick with the final score and whether it won |
/api/v1/stats.json | Hit rate and ROI — overall and broken down by league, market and confidence |
/api/v1/index.json | Machine-readable index of the above |
curl -s https://mallusports.pro/api/v1/today.json | jq '.picks[0]'
{
"league": "England. Premier League",
"home": "Brentford",
"away": "Sunderland",
"kickoff": "19:30",
"market": "Over 1.5 Goals",
"pick": "Over 1.5 Goals",
"odds": 1.23,
"confidence": "low"
}
// JavaScript - no key needed
const r = await fetch('https://mallusports.pro/api/v1/stats.json');
const s = await r.json();
console.log(s.overall.hit_rate, s.overall.roi_pct);
# Python
import requests
stats = requests.get('https://mallusports.pro/api/v1/stats.json').json()
print(stats['by_market']['Both Teams to Score'])
| Metric | Value |
|---|---|
| Settled picks | 80 |
| Won | 46 |
| Hit rate | 57.5% |
| Average odds | 2.01 |
| ROI at flat stakes | 8.7% |
Losing markets are published alongside winning ones. If you only ever see a tipster's good months, you are reading marketing rather than a record.
Please cache responses for at least five minutes rather than polling on every page view. The files are static and rebuilt on a schedule, so hammering them gains you nothing. If you build something with this, tell us at [email protected] and we will link to it.
MalluSports is a free tips and analysis service only. We do not accept bets, hold funds, or operate a gambling platform. All figures shown across the site are virtual and illustrative. 18+.
Download the full dataset → · Embed the picks on your site →