Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / Data Enrichment / All Sports Football API
All Sports Football API logo

Allsportsapi All Sports Football API

★ Only Publicly Available OpenAPI DocumentData EnrichmentData TransformationapiKey1 EndpointsREST

For Agents

Pull football fixtures, live scores, standings, teams, players, head-to-head data, and odds via a single dispatch endpoint, selecting the data type with a method parameter.

Use for: I need to fetch live scores for today's Premier League matches, Get standings for La Liga in the current season, Find all fixtures for Manchester City in the next 7 days, Retrieve head-to-head history between Real Madrid and Barcelona

Not supported: Does not handle non-football sports, betting transactions, or video streams — use for football fixtures, scores, standings, rosters, head-to-head, and odds only.

Jentic publishes the only available OpenAPI specification for All Sports Football API, keeping it validated and agent-ready. AllSportsAPI exposes football (soccer) data — fixtures, live scores, standings, team and player records, head-to-head history, and odds — through a single GET /football/ endpoint. Behaviour is selected via a method query parameter (e.g. Fixtures, Standings, Teams), making this a method-dispatch style API rather than a resource-per-path REST design. Authentication is by query-parameter API key, and responses cover global leagues and competitions.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the All Sports Football API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the All Sports Football API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with All Sports Football API.

Pull live football scores for in-progress fixtures

List upcoming and past fixtures filtered by league or date range

Read league standings for a chosen competition and season

Look up team rosters and player profiles

Retrieve head-to-head history between two clubs

Read pre-match and live odds for fixtures

Use Cases

Patterns agents use All Sports Football API for, with concrete tasks.

★ Live score aggregation

Sports media bots and apps poll GET /football/ with method=Livescore to pull scores for in-progress matches and surface them in real time. Because all data flows through a single endpoint with a method dispatch, the integration is one operation to learn and one to maintain. This is the fastest route to wire football data into a content workflow.

Call GET /football/ with method=Livescore and leagueId for the Premier League, then post any goal events to a Slack channel.

Fantasy sports data feed

Fantasy platforms pull fixtures, standings, and player records to populate weekly contests. The single-endpoint dispatch model means one connector handles every data type the fantasy app needs, and the API key sits in one query parameter — no header juggling. Schedules and rosters can be refreshed on a cron without complex pagination logic.

Call GET /football/ with method=Fixtures and a date range covering the upcoming gameweek, then write fixtures into the fantasy contest table.

Odds-driven content generation

Editorial bots use pre-match odds from GET /football/ method=Odds to write match previews and trigger trending content workflows. Because the same endpoint also returns standings and head-to-head data, the bot can compose context-rich previews from a single API in one or two calls.

Pull odds for fixture ID 1234 via GET /football/ method=Odds, then pull the head-to-head record via the H2H method to draft a preview.

AI agent sports content automation

An AI agent can answer user questions like 'who is playing tonight?' by hitting the AllSports method=Fixtures dispatch and summarising the result. Through Jentic the agent searches by intent, loads the input schema, and executes — the API key is held in the vault and never enters the prompt context.

Use Jentic to search 'get football fixtures for today', execute GET /football/ with method=Fixtures and today's date, and return the formatted match list.

Key Endpoints

1 endpoints — jentic publishes the only available openapi specification for all sports football api, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

GET

/football/

Query football data — selects fixtures, livescores, standings, teams, players, H2H, or odds via the method parameter

GET

/football/

Query football data — selects fixtures, livescores, standings, teams, players, H2H, or odds via the method parameter

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

Credential isolation

AllSportsAPI keys are stored encrypted in the Jentic vault and added as the APIkey query parameter at call time. The raw key never enters the agent's prompt context.

Intent-based discovery

Intent-based discovery

Agents search 'get football fixtures' or 'live football scores' and Jentic returns the GET /football/ operation with its input schema, including the method parameter values to choose between.

Time to first call

Time to first call

Direct AllSportsAPI integration: half a day to map method dispatch values, response shapes, and rate handling. Through Jentic: under 30 minutes — search, load, execute.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

API-Football

→

Resource-oriented football API with fixtures, standings, and odds across endpoints

Choose API-Football when you prefer one resource per path over a single dispatch endpoint

Alternative

API-Sports

→

Multi-sport API covering football, basketball, and others

Choose API-Sports when you need multiple sports under a single vendor and unified credentials

Alternative

SportMonks

→

Detailed football data including expected goals and player stats

Choose SportMonks when you need richer statistical and tactical data than livescores and standings

FAQs

Specific to using All Sports Football API through Jentic.

Why is there no official OpenAPI spec for All Sports Football API?

AllSportsAPI does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call All Sports Football API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.

What authentication does the All Sports Football API use?

An API key passed as the APIkey query parameter. Through Jentic, the key is stored in the encrypted vault and added at execution time so it never appears in agent prompts or logs.

Can I get live football scores from this API?

Yes. Call GET /football/ with method=Livescore. The same endpoint serves fixtures, standings, team and player data, head-to-head, and odds depending on the method parameter you choose.

How do I fetch fixtures via the AllSports API through Jentic?

Run pip install jentic, search 'get football fixtures', load the input schema for GET /football/, and execute with method=Fixtures and your chosen date or league filter.

How is this API structured — is it one endpoint or many?

It is a single GET /football/ endpoint with a method query parameter that dispatches to different data types. Treat the method value as the resource selector when integrating.

Does the AllSports API cover sports other than football?

This spec covers football (soccer) only. Other sports may be available via separate AllSportsAPI products that are not included in this OpenAPI definition.

GET STARTED

Start building with All Sports Football API

Explore with Jentic
View OpenAPI Document