⚡ Developer API

PaceStat Data API

Live football data, match analysis, and standings — all in one REST API. No scraping required.

Free

$0

500 req/day

Pro

$9/mo

10,000 req/day

Business

$29/mo

100,000 req/day

API Keys

Sign in to generate API keys

Sign in →
GET/api/v1/matchesLive & upcoming matches

Request

curl https://pacestat.com/api/v1/matches?league=premier-league \
  -H "X-Api-Key: sk_live_YOUR_KEY"

Response

{
  "league": "premier-league",
  "matches": [
    {
      "id": "...",
      "date": "2026-04-05T15:00:00Z",
      "status": "STATUS_SCHEDULED",
      "homeTeam": "Arsenal",
      "awayTeam": "Chelsea",
      "homeScore": null,
      "awayScore": null
    }
  ]
}

Authentication

# Option 1 — Header
curl https://pacestat.com/api/v1/matches?league=premier-league \
  -H "X-Api-Key: sk_live_YOUR_KEY"

# Option 2 — Bearer token
curl https://pacestat.com/api/v1/matches?league=premier-league \
  -H "Authorization: Bearer sk_live_YOUR_KEY"