Discover/Soccerway API
live

Soccerway APIuk.soccerway.com

Retrieve football fixtures from Soccerway by date offset. Get competition names, teams, kickoff times, scores, and match status across global leagues.

Endpoint health
verified 6d ago
get_fixtures
1/1 passing latest checkself-healing
Endpoints
1
Updated
26d ago

What is the Soccerway API?

The Soccerway Fixtures API exposes 1 endpoint — get_fixtures — that returns an array of football match objects for any day from today onward, covering competition name, home and away teams, kickoff time in UTC, live or final scores, and match status. Each response also includes a total_count field so you know exactly how many fixtures were returned for a given day without counting the array yourself.

Try it
Number of days from today into the future. 0 for today, 1 for tomorrow, 2 for the day after, etc. Must be 0 or greater; negative values are rejected.
api.parse.bot/scraper/03fedeb9-3b82-4620-9248-025a15e70e4e/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/03fedeb9-3b82-4620-9248-025a15e70e4e/get_fixtures?day_offset=0' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace uk-soccerway-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Soccerway Fixtures API — fetch today's and tomorrow's football matches."""
from parse_apis.soccerway_fixtures_api import Soccerway, DayOffset, FixturesUnavailable

client = Soccerway()

# List today's fixtures (default day_offset=0), capped at 5 items
for fixture in client.fixtures.list(day_offset=DayOffset.TODAY, limit=5):
    print(fixture.competition, fixture.home_team, "vs", fixture.away_team, fixture.display)

# Drill into tomorrow's first fixture
tomorrow = client.fixtures.list(day_offset=DayOffset.TOMORROW, limit=1).first()
if tomorrow:
    print("Tomorrow's first:", tomorrow.home_team, "vs", tomorrow.away_team,
          "kickoff_timestamp:", tomorrow.kickoff_timestamp)

# Handle an error case — invalid input
try:
    client.fixtures.list(day_offset="-1", limit=1).first()
except FixturesUnavailable as exc:
    print(f"Expected error: {exc}")

print("exercised: fixtures.list (today / tomorrow / error handling)")
All endpoints · 1 totalmissing one? ·

Retrieve football fixtures from Soccerway for a given day offset. Returns match details including competition name, teams, kickoff time or score, and match status for all available leagues worldwide. Only current and future dates are supported (day_offset >= 0).

Input
ParamTypeDescription
day_offsetintegerNumber of days from today into the future. 0 for today, 1 for tomorrow, 2 for the day after, etc. Must be 0 or greater; negative values are rejected.
Response
{
  "type": "object",
  "fields": {
    "fixtures": "array of match objects, each containing competition, match_id, home_team, away_team, display (kickoff time as HH:MM UTC or score as H:A), status_code, kickoff_timestamp, home_score, and away_score",
    "total_count": "integer total number of fixtures returned"
  },
  "sample": {
    "data": {
      "fixtures": [
        {
          "display": "00:30",
          "match_id": "MiHypBQh",
          "away_team": "Dakota",
          "home_team": "La Fama",
          "away_score": null,
          "home_score": null,
          "competition": "ARUBA: Division di Honor - Final Group",
          "status_code": "1",
          "kickoff_timestamp": "1781137800"
        },
        {
          "display": "09:00",
          "match_id": "6Lh4Dnoo",
          "away_team": "Cambodia U19",
          "home_team": "Thailand U19",
          "away_score": null,
          "home_score": null,
          "competition": "ASIA: ASEAN Championship U19 - Play Offs",
          "status_code": "1",
          "kickoff_timestamp": "1781168400"
        }
      ],
      "total_count": 144
    },
    "status": "success"
  }
}

About the Soccerway API

What the API Returns

The get_fixtures endpoint accepts a single day_offset integer parameter, where 0 returns today's fixtures, 1 returns tomorrow's, and so on. Only non-negative offsets are supported — past dates are not available through this endpoint. Each call returns a fixtures array and a total_count integer.

Response Fields

Every object in the fixtures array contains the following fields: competition (the league or cup name), match_id (a unique identifier for the match on Soccerway), home_team, away_team, display (either a kickoff time formatted as HH:MM UTC for upcoming matches, or a scoreline for completed or in-progress matches), and match_status (indicating whether the match is scheduled, live, or finished). There are no nested pagination objects — the full set of fixtures for the requested day is returned in a single response.

Coverage and Scope

Soccerway aggregates fixtures across a wide range of global football competitions, from top European leagues to lower-division and international tournaments. The competition field in each fixture object tells you which league or cup the match belongs to, but the endpoint does not currently support filtering by competition or country — all available fixtures for the requested day are returned together. The match_id can be used to cross-reference matches if you are building a dataset over time.

Reliability & maintenanceVerified

The Soccerway API is a managed, monitored endpoint for uk.soccerway.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when uk.soccerway.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official uk.soccerway.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
6d ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Display today's football schedule on a sports dashboard, grouped by competition name
  • Send daily fixture digest emails showing kickoff times for matches across selected leagues
  • Track match status changes throughout a matchday by polling with day_offset 0
  • Build a results feed by reading the display field for finished matches on the current day
  • Populate a betting research tool with upcoming fixture lists and kickoff times
  • Log daily fixture counts using total_count to monitor coverage consistency over time
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Soccerway have an official developer API?+
Soccerway does not publish an official public developer API. There is no documented endpoint or API key program available at uk.soccerway.com for third-party developers.
Can I retrieve fixtures for past dates using this API?+
No. The get_fixtures endpoint only supports day_offset values of 0 or greater. Historical results from past dates are not returned. The API covers current-day and future fixtures. You can fork it on Parse and revise it to add a past-dates endpoint if historical results data is what you need.
Does the API let me filter fixtures by league or country?+
Not currently. The API returns all available fixtures for the requested day across every competition, identified by the competition field in each fixture object. Filtering by specific league or country is not a supported parameter. You can fork it on Parse and revise it to add filtering logic on top of the returned data.
What does the display field contain for live versus upcoming matches?+
For matches that have not yet kicked off, display contains the scheduled kickoff time as a string in HH:MM UTC format. For matches in progress or finished, display contains the current or final scoreline. The match_status field tells you which state the match is in.
Are player-level stats or lineups available through this API?+
Not currently. The API covers fixture-level data: competition, teams, kickoff time or score, and match status. Player statistics, lineups, and formation data are not included in the response. You can fork it on Parse and revise it to add an endpoint targeting match detail pages for that deeper data.
Page content last updated . Spec covers 1 endpoint from uk.soccerway.com.
Related APIs in SportsSee all →
flashscore.com API
Search teams and competitions, pull daily fixtures and live scores, and retrieve match details including events, statistics, and league standings from FlashScore.
flashscore.com.ua API
Access football match results, fixtures, team histories, and in-match statistics from Flashscore. Look up matches by date, retrieve a team's recent and upcoming games, and pull detailed events and performance metrics for any match.
fussballdaten.de API
Find live soccer match schedules, scores, and team information across German leagues and Europe's top competitions, with the ability to filter by date, team, or league. Quickly look up upcoming fixtures, past results, and complete team schedules for Bundesliga, Premier League, La Liga, Serie A, Ligue 1, Champions League, and more.
livescore.com API
Track live scores and detailed statistics across football, hockey, basketball, tennis, and cricket with the ability to filter by date, sport, and league. Access match summaries, team overviews, standings, fixtures, and results to stay updated on your favorite competitions and teams.
sky.com API
Access football news, transfer updates, and match scores from Sky Sports. Retrieve headlines and full article content across teams and competitions, follow live transfer window bulletins, and look up fixtures and results by date.
flashscore.com.tr API
Get live football scores, daily fixtures, and detailed match information including team lineups with player ratings, comprehensive statistics, and betting odds. Stay updated on your favorite games with real-time data and complete match summaries all in one place.
football-data.org API
Get live match scores, team standings, and player statistics across football competitions worldwide. Search for teams, view head-to-head matchups, track top scorers, and explore detailed information about competitions and geographical areas.
footystats.org API
Get live football scores, team performance metrics, league standings, and head-to-head match statistics all in one place. Search teams and leagues to access detailed player stats, comprehensive analytics, and in-depth performance data across football competitions worldwide.