Free Prediction API

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.

Endpoints

EndpointReturns
/api/v1/today.jsonToday's published picks — league, teams, kickoff, market, selection, odds, confidence band
/api/v1/history.jsonEvery settled pick with the final score and whether it won
/api/v1/stats.jsonHit rate and ROI — overall and broken down by league, market and confidence
/api/v1/index.jsonMachine-readable index of the above

Quick start

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'])

What is in the record right now

MetricValue
Settled picks80
Won46
Hit rate57.5%
Average odds2.01
ROI at flat stakes8.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.

Fair use

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 →