Discover/Fussballdaten API
live

Fussballdaten APIfussballdaten.de

Access soccer match schedules, scores, and team data from fussballdaten.de. Covers Bundesliga, Premier League, La Liga, Champions League, and more.

Endpoint health
verified 4d ago
get_matches_by_date
search_teams
get_team_schedule
get_upcoming_matches
4/4 passing latest checkself-healing
Endpoints
4
Updated
26d ago

What is the Fussballdaten API?

The fussballdaten.de API exposes 4 endpoints for retrieving soccer match data across German and European competitions. Use get_matches_by_date to pull all fixtures and scores for any calendar date, get_upcoming_matches to scan ahead up to 60 days with optional team filtering, get_team_schedule for a club's full-season results and fixtures, and search_teams to resolve team slugs. Response objects include kick-off times, half-time scores, competition names, league group filters, and team rankings.

Try it
Date in YYYY-MM-DD format. When omitted, returns today's matches.
Filter matches by league group.
api.parse.bot/scraper/8b3591cb-cd83-4dfe-8492-35c438b61d6e/<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/8b3591cb-cd83-4dfe-8492-35c438b61d6e/get_matches_by_date?date=2026-07-11&filter=all' \
  -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 fussballdaten-de-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.

from parse_apis.fussballdaten_de_soccer_matches_api import Fussballdaten, MatchFilter, Team, MatchDay

client = Fussballdaten()

# Search for teams to find their slugs
for team in client.teams.search(query="bayern"):
    print(team.name, team.slug, team.url)

# Get a specific team's full season schedule
bayern = client.team("fc-bayern-muenchen")
for match in bayern.matches.list():
    print(match.date, match.home_team, match.away_team, match.venue, match.score)

# Get today's matches filtered to German leagues
day = client.matchdays.get(filter=MatchFilter.DEUTSCH)
print(day.date, day.total_matches)
for match in day.matches:
    print(match.competition, match.home_team, match.away_team, match.kick_off_time)

# Get upcoming matches across top European leagues
for match in client.matchdays.upcoming(days=7, filter=MatchFilter.TOPLIGEN):
    print(match.date, match.home_team, match.away_team, match.competition)
All endpoints · 4 totalmissing one? ·

Retrieve all soccer matches scheduled for a specific date across all tracked competitions. Returns match details including teams, scores (for completed matches), kick-off times (for upcoming), and competition context. Supports filtering by league group. When no date is provided, returns today's matches.

Input
ParamTypeDescription
datestringDate in YYYY-MM-DD format. When omitted, returns today's matches.
filterstringFilter matches by league group.
Response
{
  "type": "object",
  "fields": {
    "date": "string - The date queried in YYYY-MM-DD format",
    "filter": "string - Filter applied",
    "matches": "array of match objects with competition, home_team, away_team, kick_off_time or score/half_time_score, match_url, match_id",
    "total_matches": "integer - Total number of matches returned"
  },
  "sample": {
    "data": {
      "date": "2026-06-10",
      "filter": "all",
      "matches": [
        {
          "date": "2026-06-10",
          "score": "2:1",
          "match_id": "878963",
          "away_team": "Nigeria",
          "home_team": "Portugal",
          "match_url": "https://www.fussballdaten.de/freundschaftsspiele/2026/portugal-nigeria/",
          "competition": "International, Freundschaftsspiele",
          "half_time_score": "1:1"
        },
        {
          "date": "2026-06-10",
          "score": "2:0",
          "match_id": "870368",
          "away_rank": 12,
          "away_team": "Norrby IF",
          "home_rank": 1,
          "home_team": "Varbergs BoI",
          "match_url": "https://www.fussballdaten.de/schweden/superettan/2026/11/varbergsboi-norrbyif/",
          "competition": "Schweden, Superettan, 11. Spieltag",
          "half_time_score": "1:0"
        }
      ],
      "total_matches": 14
    },
    "status": "success"
  }
}

About the Fussballdaten API

Match Data by Date and Lookahead

get_matches_by_date accepts a date parameter in YYYY-MM-DD format and an optional filter parameter (all, deutsch, topligen, etc.) to narrow results to a league group. Each match object in the response carries home_team, away_team, competition, kick_off_time for upcoming matches, and score plus half_time_score for completed ones. Omitting date returns today's fixtures. The total_matches integer tells you how many records came back without counting the array manually.

get_upcoming_matches lets you look ahead from today by setting days (up to 60). Pass a comma-separated teams string to scope results to specific clubs using case-insensitive partial matching — for example, 'Bayern,Dortmund' — useful when you only care about a handful of sides across all competitions. The response includes home_rank and away_rank fields alongside match_url and match_id, which link directly to the source detail page.

Team Schedule and Club Discovery

get_team_schedule returns a full-season view for one club across all competitions — league, cup, and continental. It requires a team_slug such as fc-bayern-muenchen or borussia-dortmund. Past matches include scores; future matches include kick-off times. The venue field marks each fixture as home or away. Use search_teams first to find valid slugs: pass a query string for a partial-match search, or omit it to list all available teams. Each result includes name, slug, url, and optionally country.

Reliability & maintenanceVerified

The Fussballdaten API is a managed, monitored endpoint for fussballdaten.de — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when fussballdaten.de 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 fussballdaten.de 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
4d ago
Latest check
4/4 endpoints 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
  • Build a Bundesliga match calendar that surfaces kick-off times and half-time scores for each matchday.
  • Set up fixture alerts for specific clubs by filtering get_upcoming_matches with a team name list.
  • Aggregate weekly fixtures across Champions League and Europa League for a multi-competition dashboard.
  • Track a team's home-versus-away record using the venue field in get_team_schedule responses.
  • Populate a fantasy football app with upcoming fixtures and results for top European leagues.
  • Cross-reference home_rank and away_rank data from upcoming matches to build form-based previews.
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 fussballdaten.de offer an official public developer API?+
No. Fussballdaten.de does not publish an official public API or developer program. This Parse API provides structured programmatic access to the data the site exposes.
What does the `filter` parameter in `get_matches_by_date` actually control?+
It scopes results to a league group. deutsch returns German leagues including Bundesliga, 2. Bundesliga, 3. Liga, and Regionalliga. topligen returns top European competitions. all returns everything. Omitting it defaults to all matches for the given date.
Does the API return live in-match scores or only pre-match and full-time data?+
The API returns kick-off times for upcoming matches and score plus half_time_score for completed ones. Live in-progress scores are not currently distinguished as a separate state in the response. You can fork this API on Parse and revise it to add a live-match polling endpoint.
Are player-level statistics like goals, assists, or cards available?+
Not currently. The API covers match schedules, scores, kick-off times, competition names, and team rankings. Individual player statistics are not exposed in any endpoint. You can fork this API on Parse and revise it to add an endpoint targeting player or match detail pages.
How far back does historical match data go in `get_team_schedule`?+
The endpoint returns the current season's schedule for a given team slug, covering matches already played alongside remaining fixtures. Multi-season historical archives are not included. You can fork this API on Parse and revise it to target past-season pages for extended history.
Page content last updated . Spec covers 4 endpoints from fussballdaten.de.
Related APIs in SportsSee all →
flashscore.de API
Get match listings, match details and statistics, team rosters, and a German-language sports news feed from Flashscore.de, plus lineup data with player rating fields when available.
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.
soccerstats.com API
Access comprehensive soccer statistics including live league tables, match details, team performance metrics, and form rankings across multiple football leagues. Search for specific teams and analyze their season statistics, head-to-head records, and competitive standings to stay informed on the latest soccer data.
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.
fotmob.com API
Get live football scores, detailed match results, and comprehensive league statistics across multiple competitions. Access player and team performance data, browse upcoming fixtures by date, and dive into in-depth analytics for your favorite leagues and matches.
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.
predicd.com API
Get real-time football match predictions, live scores, fixtures, and league standings across multiple competitions including Bundesliga. Access detailed match insights, upcoming games, and current league tables to stay informed about football events and predictions.
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.