Discover/fotball API
live

fotball APIfotball.no

Access Norwegian football data via the fotball.no API: tournament standings, match schedules, national teams, and regional data across 7 endpoints.

Endpoint health
verified 1d ago
get_todays_matches
list_regions
search_matches_by_team
get_tournament_standings
get_tournament_matches
7/7 passing latest checkself-healing
Endpoints
7
Updated
26d ago

What is the fotball API?

The fotball.no API covers Norwegian football across 7 endpoints, returning match schedules, league standings, team tournaments, and national team listings. The get_tournament_standings endpoint delivers full league table data — position, wins, draws, losses, goals, and points — for competitions like Eliteserien, OBOS-ligaen, and Toppserien. Match FIKS IDs returned by schedule endpoints feed directly into get_match_details for per-match events, referees, and venue information.

Try it
Season ID.
Team name to search for (e.g. 'Rosenborg', 'Aalesund', 'Viking').
api.parse.bot/scraper/addeab4d-be2e-4cdf-ac7d-50c9b71b3c1f/<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/addeab4d-be2e-4cdf-ac7d-50c9b71b3c1f/search_matches_by_team?season_id=110&team_name=Rosenborg' \
  -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 fotball-no-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: fotball.no SDK — Norwegian football tournaments, matches, and standings."""
from parse_apis.fotball_no_api import Fotball, MatchNotFound

client = Fotball()

# Search tournaments for a team, capped at 5 results.
for t in client.tournaments.search(team_name="Rosenborg", limit=5):
    print(t.tournament_name, t.slug)

# Construct a known tournament and browse its standings.
eliteserien = client.tournament(slug="eliteserien")
for standing in eliteserien.standings(limit=3):
    print(standing.pos, standing.team, standing.points, standing.goals)

# Get upcoming matches and drill into the first one's details.
match = eliteserien.matches(limit=1).first()
if match:
    detail = match.details()
    print(detail.title, detail.venue, detail.referees)

# List today's scheduled matches across all divisions.
for sm in client.scheduledmatches.list(limit=3):
    print(sm.time, sm.home_team, sm.away_team, sm.tournament)

# Typed error handling for a non-existent match.
try:
    bad_match = client.tournaments.search(team_name="Viking", limit=1).first()
    if bad_match:
        detail = bad_match.matches(limit=1).first()
        if detail:
            detail.details()
except MatchNotFound as exc:
    print(f"Match not found: {exc.fiks_id}")

print("exercised: tournaments.search / tournament.standings / tournament.matches / match.details / scheduledmatches.list")
All endpoints · 7 totalmissing one? ·

Search for tournaments a team participates in for a given season. Returns tournament names, URLs, and slugs. The team_name is matched against club registrations in the Norwegian football system.

Input
ParamTypeDescription
season_idstringSeason ID.
team_namerequiredstringTeam name to search for (e.g. 'Rosenborg', 'Aalesund', 'Viking').
Response
{
  "type": "object",
  "fields": {
    "club": "string, the team name searched for",
    "season_id": "string, the season ID used",
    "tournaments": "array of tournament objects with tournament_name, url, and slug"
  },
  "sample": {
    "data": {
      "club": "Rosenborg",
      "season_id": "110",
      "tournaments": [
        {
          "url": "https://www.fotball.no/turneringer/eliteserien/",
          "slug": "eliteserien",
          "tournament_name": "Eliteserien"
        },
        {
          "url": "https://www.fotball.no/turneringer/obosligaen/",
          "slug": "obosligaen",
          "tournament_name": "OBOS-ligaen"
        }
      ]
    },
    "status": "success"
  }
}

About the fotball API

Tournament and Standings Data

The get_tournament_standings endpoint accepts a tournament slug (e.g. eliteserien, obosligaen, toppserien) and returns a full standings array with pos, team, played, won, drawn, lost, goals, and points fields for every club in that table. The get_tournament_matches endpoint uses the same tournament slug to retrieve the full fixture list — both upcoming and past matches — returning date, time, home, away, venue, and match_id for each row.

Match Schedules and Details

get_todays_matches returns all matches for a given date (defaulting to today when no date parameter is supplied) and can be filtered by club ID or district ID. Each match object includes tournament, time, home_team, away_team, result, venue, and match_id. That match_id (FIKS ID) is the key input for get_match_details, which returns a title, venue, events array (goal scorers, cards, substitutions as strings), and a referees array. For future matches the events and referees fields are empty arrays rather than absent.

Team and Regional Lookups

search_matches_by_team takes a team_name (e.g. Rosenborg, Aalesund) and an optional season_id and returns all tournaments that team participates in for that season, with each tournament's tournament_name, url, and slug. list_national_teams returns every Norwegian national team — men's, women's, youth, and futsal — with name, slug, and url. list_regions enumerates all Norwegian football regions (kretser) with name and url.

Coverage Notes

All tournament slugs are specific to fotball.no's naming conventions. The match_id values required by get_match_details are numeric FIKS IDs that must be obtained from get_todays_matches or get_tournament_matches first — there is no standalone match-search by team name. District and club filter IDs for get_todays_matches are not enumerated in the API itself and must be sourced from list_regions or external reference.

Reliability & maintenanceVerified

The fotball API is a managed, monitored endpoint for fotball.no — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when fotball.no 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 fotball.no 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
1d ago
Latest check
7/7 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 live match-day dashboard showing all Norwegian football fixtures and results using get_todays_matches.
  • Populate a league table widget for Eliteserien or Toppserien from get_tournament_standings standings fields.
  • Track a specific club's tournament calendar for a season using search_matches_by_team with a season_id.
  • Display match events (goals, cards, substitutions) and assigned referees via get_match_details.
  • List all Norwegian national teams with slugs for building team profile pages using list_national_teams.
  • Filter upcoming fixtures by region for a local football news site using list_regions and the district filter on get_todays_matches.
  • Aggregate fixture and result data across multiple tournaments for a Norwegian football statistics tracker.
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 fotball.no have an official developer API?+
fotball.no does not publish a documented public developer API. This Parse API provides structured access to the data available on the site.
What does `get_match_details` return for a match that hasn't been played yet?+
For future matches the endpoint returns the title, venue, and match_id fields as populated, but events and referees come back as empty arrays. Event and referee data is only present once the match has been played and the data is available.
How do I find the correct tournament slug to use with `get_tournament_standings` or `get_tournament_matches`?+
Tournament slugs follow fotball.no's naming conventions — examples include eliteserien, obosligaen, and toppserien. You can discover slugs for a specific team's competitions by first calling search_matches_by_team with a team_name, which returns a tournaments array containing the slug field for each competition.
Does the API return player statistics such as top scorers or assists for a tournament?+
Not currently. The API covers tournament standings (points, wins, goals at team level), match schedules, and per-match events as unstructured strings. It does not expose player-level statistics. You can fork the API on Parse and revise it to add an endpoint targeting player stat data.
Are lower-division or youth league standings available, or only top-tier competitions?+
The tournament parameter accepts any valid fotball.no tournament slug, so coverage is not restricted to top-tier leagues. However, the API does not enumerate all available slugs — only the ones you already know will return data. The search_matches_by_team endpoint is the practical way to discover slugs for teams at any level. You can fork the API on Parse and revise it to add a slug-discovery or league-listing endpoint.
Page content last updated . Spec covers 7 endpoints from fotball.no.
Related APIs in SportsSee all →
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.
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.
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.
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.
tv2.no API
Access the latest news, sports updates, and TV schedules from tv2.no, including live match information, articles by category, and video content. Browse frontpage articles, track live sports matches with detailed stats, check the TV guide, and follow topic-specific news feeds all in one place.
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.
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.
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.