Discover/Co API
live

Co APIfootball.co.il

Access Israeli football league standings, fixtures, team profiles, player stats, and match details via the football.co.il API. Covers Ligat Ha'Al and Liga Leumit.

Endpoint health
verified 4d ago
get_match_statistics
get_team_fixtures
get_league_standings
get_all_teams
get_team_profile
11/11 passing latest checkself-healing
Endpoints
11
Updated
26d ago

What is the Co API?

The football.co.il API exposes 11 endpoints covering Israeli football league data including standings, fixtures, team profiles, squad rosters, and per-match statistics. The get_league_standings endpoint returns standings grouped by stage (RegularSeason, ChampionshipRound, RelegationRound) for Ligat Ha'Al (tournament ID 902) and Liga Leumit (719), while get_match_statistics delivers in-game team-level metrics such as expected goals, possession, and shots on target for individual matches.

Try it
Season identifier in YY/YY format (e.g., '25/26', '24/25').
Tournament ID. '902' for Ligat Ha'Al (top division), '719' for Liga Leumit.
api.parse.bot/scraper/f13aebab-be30-4f04-8f99-36aac5f132cc/<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/f13aebab-be30-4f04-8f99-36aac5f132cc/get_league_standings?season=25%2F26&tournament_id=902' \
  -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 football-co-il-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: Football.co.il SDK — Israeli league standings, teams, fixtures, and player stats."""
from parse_apis.football_co_il_api import FootballIL, Tournament, Season, ResourceNotFound

client = FootballIL()

# Browse league standings for the current season.
for standing in client.standings.list(tournament_id=Tournament.LIGAT_HAAL, limit=5):
    print(standing.name, standing.position, standing.points, standing.goals_scored)

# List all teams and pick the first one.
team = client.teams.list(limit=1).first()
if team:
    print(team.name, team.hebrew_name, team.color)

# Construct a team by ID and explore sub-resources.
maccabi = client.team(id=4536)
for player in maccabi.squad.list(limit=3):
    print(player.name, player.position, player.shirt_number)

# Get season stats for the constructed team.
for stats in maccabi.statistics.list(season=Season._24_25, limit=1):
    print(stats.goal, stats.assist, stats.ball_possession, stats.expected_goals)

# Get top scorers for the league.
for ps in client.playerseasons.top_scorers(tournament_id=Tournament.LIGAT_HAAL, limit=3):
    print(ps.player_id, ps.goal, ps.assist, ps.expected_goals)

# Typed error handling: attempt to fetch squad for a non-existent team.
try:
    bad_team = client.team(id=99999)
    for p in bad_team.squad.list(limit=1):
        print(p.name)
except ResourceNotFound as exc:
    print(f"Team not found: {exc}")

print("exercised: standings.list / teams.list / team().squad.list / team().statistics.list / playerseasons.top_scorers / ResourceNotFound")
All endpoints · 11 totalmissing one? ·

Get league standings for a specific tournament and season. Returns standings grouped by stage (RegularSeason, ChampionshipRound, RelegationRound). Each stage contains an array of team standings sorted by position.

Input
ParamTypeDescription
seasonstringSeason identifier in YY/YY format (e.g., '25/26', '24/25').
tournament_idstringTournament ID. '902' for Ligat Ha'Al (top division), '719' for Liga Leumit.
Response
{
  "type": "object",
  "fields": {
    "RegularSeason": "array of team standings with id, position, points, wins, draws, losses, goalsScored, goalsReceived, gamesCount, name, hebrewName",
    "RelegationRound": "array of team standings for the relegation playoff round",
    "ChampionshipRound": "array of team standings for the championship playoff round"
  },
  "sample": {
    "data": {
      "RegularSeason": [
        {
          "id": 4554,
          "name": "הפועל ב\"ש",
          "wins": 18,
          "draws": 5,
          "losses": 3,
          "points": 59,
          "position": 1,
          "arabicName": "هبوعيل بئر السبع",
          "gamesCount": 26,
          "hebrewName": "הפועל ב\"ש",
          "goalsScored": 58,
          "goalsReceived": 25,
          "penaltyPoints": 0
        }
      ]
    },
    "status": "success"
  }
}

About the Co API

League Standings and Fixtures

The get_league_standings endpoint accepts a season parameter in YY/YY format (e.g., 24/25) and a tournament_id to select Ligat Ha'Al (902) or Liga Leumit (719). The response groups standings into stage buckets — RegularSeason, ChampionshipRound, and RelegationRound — each containing team rows with fields like position, points, wins, draws, losses, goals scored, goals received, and games played. The get_fixtures_by_matchday endpoint returns a specific round's fixtures or, when matchday is omitted, the latest played matchday. Each fixture object includes homeTeamId, awayTeamId, homeScore, awayScore, status, stadiumId, and date, alongside a round_info object carrying the round name, tournament, and season.

Team and Player Data

get_all_teams returns every team in the league with multilingual names (name in English, hebrewName), color as a hex code, leagueId, stadiumId, and the coach's name — useful as a discovery step before querying team-specific endpoints. get_team_profile expands the stadiumId field into a full object with id, name, hebrewName, and arabicName. get_team_squad returns the roster for a given team, with each player record including id, name, hebrewName, teamId, and a clubs array representing career club history.

Match and Season Statistics

get_match_statistics returns team-level in-game stats for a single match keyed by composite ID. Fields include teamId, Goal, expectedGoals, passes, accuratePasses, ballPossession, AttemptonGoal, OnTarget, and OffTarget. Season-aggregate stats at the team level are available through get_team_statistics, which returns fields like Assist, Cross, Corner, and Yellow for a given team_id and season. For player-level season aggregates, get_player_stats_leaders and get_top_scorers both return Goal, Assist, appearances, expectedGoals, teamId, and playerId; these endpoints are reliably populated for Ligat Ha'Al only.

Historical Fixtures

get_team_fixtures returns every fixture for a team across all seasons as a map from game_id to a fixture object containing status, homeTeamId, awayTeamId, homeScore, awayScore, stadiumId, date, and season. Game IDs surfaced here or from get_fixtures_by_matchday can be passed to get_match_details to retrieve the full match record under the bamboo key, including round, stage, and season fields.

Reliability & maintenanceVerified

The Co API is a managed, monitored endpoint for football.co.il — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when football.co.il 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 football.co.il 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
11/11 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 Ligat Ha'Al standings table that segments teams into championship and relegation rounds using get_league_standings stage data.
  • Power a match results tracker that loads the latest matchday fixtures automatically by calling get_fixtures_by_matchday without a matchday argument.
  • Display a team's full schedule and historical results across seasons using the game map returned by get_team_fixtures.
  • Render a squad page with Hebrew and English player names, career club history from get_team_squad, and season goal/assist tallies from get_player_stats_leaders.
  • Produce a post-match report by combining get_match_details for score and venue with get_match_statistics for possession, xG, and shots on target.
  • Aggregate season-level team performance metrics (passes, corners, yellow cards) from get_team_statistics to compare teams across a given season.
  • Build a top-scorers leaderboard using get_top_scorers with fields for goals, assists, expected goals, and appearances for each player.
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 football.co.il have an official developer API?+
Football.co.il does not publish a documented public developer API or API program. This Parse API provides structured programmatic access to the data the site exposes.
How does `get_league_standings` break down the season stages?+
The response contains a top-level key for each stage present in the selected season: RegularSeason, ChampionshipRound, and RelegationRound. Each stage holds an array of team rows with position, points, wins, draws, losses, goals scored and received, and games played. Not every season will populate all three stages — early in a season only RegularSeason may be present.
Are player statistics available for Liga Leumit (tournament_id 719)?+
Player-level stats from get_player_stats_leaders and get_top_scorers are reliably populated for Ligat Ha'Al (tournament_id 902). Liga Leumit player stats may not be populated in the current data. Team-level standings and fixture data for Liga Leumit are available. You can fork this API on Parse and revise it to add a Liga Leumit player stats endpoint if the underlying data becomes available.
Does the API return individual player match-by-match performance data (e.g., minutes played, ratings per game)?+
Not currently. The API covers season-aggregate player stats (goals, assists, appearances, expected goals) via get_player_stats_leaders and squad rosters via get_team_squad, but per-match individual player performance lines are not exposed. You can fork this API on Parse and revise it to add the missing endpoint.
How do I find valid team IDs and game IDs?+
get_all_teams returns every team with its integer id, which is used as the team_id parameter for get_team_profile, get_team_squad, get_team_fixtures, and get_team_statistics. Game IDs for get_match_details and get_match_statistics are surfaced in the fixture objects returned by get_fixtures_by_matchday and get_team_fixtures.
Page content last updated . Spec covers 11 endpoints from football.co.il.
Related APIs in SportsSee all →
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.
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.
sports.ru API
Access football league standings, match results, player statistics, and upcoming fixtures from Sports.ru. Retrieve tournament tables, top scorers, detailed match information, and individual player profiles across major football leagues.
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.
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.
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.
fotball.no API
Get live match scores, search matches by team, and view tournament standings and national team information from Norwegian football competitions. Track today's matches, access detailed match information, and browse regional football data all in one place.