Discover/WorldReferee API
live

WorldReferee APIworldreferee.com

Access upcoming football match referee appointments from WorldReferee.com. Get home/away teams, competition, match date, and assigned official via one API endpoint.

Endpoint health
verified 6d ago
get_upcoming_appointments
1/1 passing latest checkself-healing
Endpoints
1
Updated
20d ago

What is the WorldReferee API?

The WorldReferee.com API exposes 1 endpoint, get_upcoming_appointments, that returns all upcoming football matches with confirmed or pending referee assignments. Each match object includes 5 fields — home team, away team, referee name, competition, and date — giving you a structured view of official appointments across multiple competitions before match day.

This call costs1 credit / call— charged only on success
Try it

No input parameters required.

api.parse.bot/scraper/3b98e6fb-23e3-4498-bf1a-1f9c48148b04/<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/3b98e6fb-23e3-4498-bf1a-1f9c48148b04/get_upcoming_appointments' \
  -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 worldreferee-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.

"""Walkthrough: WorldReferee SDK — list upcoming football referee appointments."""
from parse_apis.worldreferee_com_api import WorldReferee, UpstreamError

client = WorldReferee()

# Fetch upcoming matches, capped at 10 items
try:
    for match in client.appointments.list(limit=10):
        print(f"{match.home_team} vs {match.away_team} | {match.competition} | {match.date} | Referee: {match.referee}")
except UpstreamError as e:
    # Source site may be temporarily unavailable
    print(f"Upstream error: {e}")

# Use .first() to grab a single upcoming appointment
next_match = client.appointments.list(limit=1).first()
if next_match is not None:
    print(f"\nNext match: {next_match.home_team} vs {next_match.away_team}")
    print(f"  Competition: {next_match.competition}")
    print(f"  Date: {next_match.date}")
    print(f"  Referee: {next_match.referee}")

print("\nexercised: appointments.list")
All endpoints · 1 totalmissing one? ·

Returns all upcoming football matches with their referee appointments listed on WorldReferee.com. Each match includes home team, away team, competition name, match date, and assigned referee (or 'TBA' if not yet announced). Results are grouped by competition and date on the source page; this endpoint flattens them into a single array. Typically returns 40-80 matches spanning the next 1-2 weeks across multiple leagues (La Liga, Bundesliga, Ligue 1, Serie A, Premier League, etc.). No pagination — one call returns all listed matches.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "total": "integer count of matches returned",
    "matches": "array of match objects with home_team, away_team, referee, competition, and date"
  },
  "sample": {
    "data": {
      "total": 60,
      "matches": [
        {
          "date": "Friday 28 August 2026",
          "referee": "TBA",
          "away_team": "Elche CF",
          "home_team": "Real Racing Club de Santander",
          "competition": "La Liga"
        },
        {
          "date": "Friday 28 August 2026",
          "referee": "TBA",
          "away_team": "VfB Stuttgart",
          "home_team": "FC Bayern München",
          "competition": "Bundesliga"
        }
      ]
    },
    "status": "success"
  }
}

About the WorldReferee API

What the API Returns

The get_upcoming_appointments endpoint returns a flat list of upcoming football matches alongside their assigned match officials. The response envelope contains a total integer showing how many matches were found, and a matches array where every entry carries home_team, away_team, referee, competition, and date. When a referee has not yet been confirmed by the governing body, the referee field returns the string 'TBA' rather than a name.

Coverage and Structure

Matches span multiple competitions — domestic leagues, cups, and international fixtures — reflecting the breadth of appointments listed on WorldReferee.com. Data is organized by competition and date at the source, and the response preserves that grouping implicitly through the competition and date fields on each match object. There are no required input parameters; a single call retrieves all available upcoming appointments in one response.

Practical Considerations

Because referee assignments are announced at different times by different football bodies, any given call may return a mix of confirmed names and 'TBA' entries. Polling the endpoint regularly in the days leading up to a match round is the practical way to catch newly announced officials. The endpoint returns every match currently listed on the upcoming page — there is no built-in pagination or competition filter, so any filtering by competition or date range needs to be applied client-side after retrieving the full result set.

Reliability & maintenanceVerified

The WorldReferee API is a managed, monitored endpoint for worldreferee.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when worldreferee.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 worldreferee.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
  • Monitor referee assignments across multiple leagues before a match weekend to guide betting or editorial decisions.
  • Build automated alerts that notify analysts when a specific referee's name appears in the referee field.
  • Compile historical referee workload data by logging repeated calls and tracking how often each official appears.
  • Cross-reference competition and referee fields to identify which officials are assigned to high-profile fixtures.
  • Feed a dashboard that flags all matches still showing 'TBA' so coverage teams know which appointments are pending.
  • Aggregate upcoming fixture lists with referee data for fantasy sports platforms that weight official tendencies.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does WorldReferee.com have an official developer API?+
WorldReferee.com does not publish an official developer API or documented data feed. The Parse API is the structured programmatic access point for this data.
What does the `get_upcoming_appointments` endpoint return for unconfirmed referees?+
When a governing body has not yet announced the official for a match, the referee field in the match object returns the string 'TBA'. All other fields — home_team, away_team, competition, and date — are still populated. You can filter client-side on referee !== 'TBA' to isolate only confirmed appointments.
Can I filter results by competition or date range before they are returned?+
The get_upcoming_appointments endpoint takes no input parameters, so filtering is not available server-side. The full set of upcoming matches is returned in one call, and any narrowing by competition or date must be done in your own code after receiving the response. You can fork this API on Parse and revise it to add query parameters that filter before returning results.
Does the API include past match results or historical referee statistics?+
No historical data is covered. The API returns only matches listed as upcoming on WorldReferee.com, with no post-match results, cards issued, or career statistics. You can fork this API on Parse and revise it to add an endpoint targeting historical appointment or match result pages.
How fresh is the data, and how often should I call the endpoint?+
The data reflects what is currently listed on the upcoming appointments page of WorldReferee.com. Because referee confirmations are announced on rolling schedules — sometimes days before a match, sometimes hours — calling the endpoint once or twice daily in the lead-up to a fixture round is a reasonable polling strategy to catch updates as 'TBA' entries resolve to named officials.
Page content last updated . Spec covers 1 endpoint from worldreferee.com.
Related APIs in SportsSee all →
aiscore.com API
Track upcoming football matches and analyze team performance with real-time fixtures and the last 5 match statistics for any team in your chosen fixture. Make informed predictions by accessing detailed team form data and scheduled games for any date.
kooora.com API
Get live football scores, match details, team standings, and player statistics in real-time. Stay updated with the latest football news and competition rankings all in one place.
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.
sportsgambler.com API
Access predicted and confirmed football starting lineups from major worldwide leagues to inform your betting decisions and match analysis. Get real-time lineup information for upcoming matches and confirmed team selections to stay ahead of the game.
soccerway.com API
Access data from soccerway.com.
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.
uefa.com API
Track detailed player performance across UEFA competitions like Champions League, Europa League, and Conference League with seasonal rankings and match-by-match statistics. Search players, compare their stats, and analyze individual performance metrics to stay informed on top European football talent.
betexplorer.com API
Search upcoming football matches across multiple dates and instantly compare 1X2 betting odds from BetExplorer to find the best lines for your picks. Access daily match schedules with real-time odds data to help inform your betting decisions.