Discover/AiScore API
live

AiScore APIaiscore.com

Access AiScore football data via 2 endpoints. Retrieve scheduled fixtures by date and last-5-match team form stats including goals scored, conceded, and first-half averages.

This API takes change requests — .
Endpoint health
verified 3h ago
get_match_team_form
get_scheduled_fixtures
2/2 passing latest checkself-healing
Endpoints
2
Updated
4h ago

What is the AiScore API?

The AiScore API provides 2 endpoints for retrieving football fixture schedules and team form statistics. Use get_scheduled_fixtures to pull all matches for any date, complete with match IDs, team slugs, competition names, and kickoff times. Use those identifiers to call get_match_team_form, which returns per-team averages across the last 5 completed matches for goals scored, goals conceded, and first-half goal figures.

This call costs2 credits / call— charged only on success
Try it
Date in YYYYMMDD format (e.g. 20260725).
api.parse.bot/scraper/4159e902-84d5-4812-bcee-311effc7486d/<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/4159e902-84d5-4812-bcee-311effc7486d/get_scheduled_fixtures?date=20260728' \
  -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 aiscore-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: AiScore SDK — bounded, re-runnable; every call capped."""
from parse_apis.aiscore_com_api import AiScore, ParseError

client = AiScore()

# List scheduled fixtures for a date, capped at 3.
for fixture in client.fixtures.list(date="20260725", limit=3):
    print(fixture.home_team, "vs", fixture.away_team, "-", fixture.competition)

# Drill down: get team form for the first fixture.
first = client.fixtures.list(date="20260725", limit=1).first()
if first:
    try:
        form = first.team_form()
        print(form.home_team, "stats:", form.home_team_stats.goals_scored_per_game, "GS/G,",
              form.home_team_stats.goals_conceded_per_game, "GC/G")
        print(form.away_team, "stats:", form.away_team_stats.goals_scored_per_game, "GS/G,",
              form.away_team_stats.goals_conceded_per_game, "GC/G")
        for match in form.home_team_last_5[:3]:
            print(" ", match.home_team, match.ft_score, match.away_team, "HT:", match.ht_score)
    except ParseError as e:
        print("error:", e)

print("exercised: fixtures.list / fixture.team_form")
All endpoints · 2 totalmissing one? ·

Retrieves all scheduled football fixtures for a given date. Returns match IDs, team names with URL slugs, competition names, and kickoff times. Results are returned in a single response. Each fixture provides the identifiers needed to retrieve team form data.

Input
ParamTypeDescription
daterequiredstringDate in YYYYMMDD format (e.g. 20260725).
Response
{
  "type": "object",
  "fields": {
    "total": "integer count of scheduled fixtures",
    "fixtures": "array of fixture objects with match_id, competition, home/away team names and slugs, match_time"
  },
  "sample": {
    "total": 1081,
    "fixtures": [
      {
        "match_id": "zrkn6i48321swql",
        "away_team": "Barracas Central",
        "home_team": "River Plate",
        "match_time": 1785060600,
        "competition": "Argentine Division 1",
        "away_team_slug": "barracas-central",
        "home_team_slug": "river-plate"
      }
    ]
  }
}

About the AiScore API

Scheduled Fixtures

get_scheduled_fixtures accepts a single date parameter in YYYYMMDD format and returns every scheduled football match for that day. Each fixture object includes a match_id, home and away team names and URL slugs, the competition name, and the match_time. The response also includes a total count of fixtures. The match_id, home_slug, and away_slug fields from this endpoint are the required inputs for the team form endpoint.

Team Form and Match Statistics

get_match_team_form takes a match_id, home_slug, and away_slug and returns form data for both teams. The home_team_stats and away_team_stats objects each contain four calculated averages over the team's last 5 finished matches: goals_scored_per_game, goals_conceded_per_game, first_half_goals_scored_per_game, and first_half_goals_conceded_per_game. Alongside the aggregated stats, home_team_last_5 and away_team_last_5 arrays list the individual match results with scores and per-match details.

Coverage and Data Shape

All statistics are calculated from exactly 5 most-recent completed matches. The endpoint does not expose standings, player-level data, odds, or live in-play scores — it is scoped to pre-match team form and fixture scheduling. Both endpoints return a single response with no pagination.

Reliability & maintenanceVerified

The AiScore API is a managed, monitored endpoint for aiscore.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when aiscore.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 aiscore.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
3h ago
Latest check
2/2 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 daily football fixture list by date using get_scheduled_fixtures with the date parameter.
  • Compare home and away team attacking output using goals_scored_per_game from get_match_team_form.
  • Identify defensively vulnerable teams by sorting on goals_conceded_per_game across multiple fixtures.
  • Analyze first-half scoring tendencies using first_half_goals_scored_per_game for both teams before a match.
  • Populate a pre-match dashboard with team slugs, competition names, and kickoff times from fixture data.
  • Feed form averages into a prediction model using the last-5-match stats from home_team_stats and away_team_stats.
  • Cross-reference home_team_last_5 and away_team_last_5 arrays for head-to-head context alongside team averages.
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 AiScore have an official developer API?+
AiScore does not publish an official public developer API or documented REST endpoints for third-party use. This Parse API provides structured access to fixture and form data from the site.
What does `get_match_team_form` return exactly?+
get_match_team_form returns four averaged statistics for each team — goals_scored_per_game, goals_conceded_per_game, first_half_goals_scored_per_game, and first_half_goals_conceded_per_game — calculated over the team's last 5 completed matches. It also returns the raw home_team_last_5 and away_team_last_5 arrays with individual match scores, and the home_team and away_team name strings.
Are live match scores or in-play statistics available?+
Not currently. The API covers scheduled fixtures and completed-match form averages over the last 5 games. Live scores and in-play events are not included. You can fork this API on Parse and revise it to add a live match data endpoint.
Does the API cover player-level statistics or standings?+
Not currently. Coverage is limited to team-level form averages and fixture metadata — no player stats, league tables, or standings are returned. You can fork this API on Parse and revise it to add endpoints targeting those data types.
How many matches does the form calculation cover, and can that window be changed?+
The form window is fixed at the 5 most recently completed matches per team. The endpoint does not accept a parameter to change that window. If you need a different look-back period, you can fork this API on Parse and revise the endpoint logic accordingly.
Page content last updated . Spec covers 2 endpoints from aiscore.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.
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.
sofascore.com API
Access head-to-head statistics and streaks for sporting events across a wide range of sports. Retrieve daily scheduled events, detailed H2H metrics (win rates, unbeaten records, draw rates, manager duels), and event fun facts. Filter and rank H2H streak metrics by configurable percentage thresholds to identify historically consistent patterns between any two teams.
statshub.com API
Access detailed football match statistics including xG, xGA, and possession metrics across multiple leagues, plus retrieve fixtures by date and current league standings. Get comprehensive season-level and match-level performance data to analyze team and player statistics in depth.
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.
uk.soccerway.com API
Get football fixtures from Soccerway by date, including competition name, teams, kickoff time, and score for completed 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.
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.