SportScore

Live scores and fixtures for several sports, keyless widget API

🩺 Health & FoodUNMONITOREDchecked 1h ago
AUTH NONECORS AGENT HTTPS COMMERCIAL ?

SportScore's widget API returns live scores, fixtures and results for football and other sports as JSON. The attribution tier needs no key and sends open CORS headers, in exchange for a visible 'Powered by SportScore' credit. Good for embedding recent matches without a signup.

HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: — · unmonitored
Uptime history
—%90 days
—%30 days
P50 · ms
P95 · ms
operationalpartialdownno data
Live response samplecaptured by our last successful check
GET https://sportscore.com/api/widget/matches/?sport=football&limit=2

{
  "sport": "football",
  "count": 2,
  "matches": [
    {
      "home": "Louisville City FC",
      "away": "Hartford Athletic",
      "home_score": 1,
      "away_score": 0,
      "status": "finished",
      "competition": "USL Championship",
      "time": "2026-07-05T00:00:00+00:00"
    }
  ]
}
Call itcurl · fetch · python
curl "https://sportscore.com/api/widget/matches/?sport=football&limit=2"
const res = await fetch("https://sportscore.com/api/widget/matches/?sport=football&limit=2");
const data = await res.json();
console.log(data);
import requests

res = requests.get("https://sportscore.com/api/widget/matches/?sport=football&limit=2")
print(res.json())
Endpoints · 6On scheduleFULL DOCS ↗
First rollup pending — GET /matches/?sport=football&limit=2 has been probed
GET/matches/?sport=football&limit=2PROBED

Live scores and fixtures for several sports, keyless widget API

GET/matches/?limit=5

Matches — documented GET route.

GET/matches/?page=1

Matches — documented GET route.

GET/standings/?sport=football&slug=premier-league&src=nba-dashboard-cli

Standings — documented GET route.

GET/matches/?sport=football&limit=5&src=sportscore-mcp%3C/code%3E

Matches — documented GET route.

GET/matches/?sport=football&limit=10

Matches — documented GET route.

Machine-readable spec

We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.

Response-shape history

Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.

SportScore: common questions

Is SportScore free to use?

Yes — SportScore is a free health & food API. Free tier: Free — no key (attribution tier). Whether the free tier allows commercial use is unclear — check the provider docs.

Does SportScore need an API key?

No — SportScore needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).

Can I call SportScore from the browser?

Yes — SportScore returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.

Is SportScore up right now?

As of our last scheduled check, SportScore is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.