Reference
API documentation
Examples below use your current route conventions and sample competition/team values.
Base URL
https://api.cordax.net
JSON is the default output unless noted otherwise.
Standings
GET /Standings/{league}/{season}
GET /Standings/{league}/{division}/{season}
GET /Standings/{league}/{season}/table
GET /Standings/{league}/{division}/{season}/table
| Parameter | Required | Notes |
|---|---|---|
league | Yes | Competition name, URL encoded. |
division | No | Use only when the competition has divisions. |
season | Yes | Current format is slug-style, for example 2025-26. |
Examples
https://api.cordax.net/Standings/Premier%20League/2025-26https://api.cordax.net/Standings/Premier%20League/2025-26/tablehttps://api.cordax.net/Standings/Championship/2025-26
The HTML table view only shows: TEAM_NAME, PLAYED, WON, DRAWN, LOST, GD, PTS, FORM. JSON returns the full stored procedure result.
Fixtures
GET /Fixtures
| Query parameter | Required | Notes |
|---|---|---|
from | No | Date filter in yyyy-MM-dd format. Supports today. |
to | No | Date filter end in yyyy-MM-dd format. Supports today. |
competition | No | Competition name. |
division | No | Division name. |
season | No | Competition season, for example 2025-26. |
team | No | Matches where the team is either home or away. |
status | No | live, ft, active, or scheduled. |
format | No | json or xml. Default is json. |
Examples
https://api.cordax.net/Fixtures?team=Portsmouth&season=2025-26&competition=Championship&status=activehttps://api.cordax.net/Fixtures?team=Arsenal&season=2025-26&competition=Premier%20League&status=fthttps://api.cordax.net/Fixtures?from=today&to=today&competition=Premier%20Leaguehttps://api.cordax.net/Fixtures?team=Portsmouth&season=2025-26&competition=Championship&status=active&format=xml
status=active includes live matches plus FT matches.
Competitions
GET /Competitions
| Query parameter | Required | Notes |
|---|---|---|
country | No | Filters competitions to a country name such as England. |
Examples
Known competition examples
| COMPETITION_ID | COMPETITION | COUNTRY_ID | CODE |
|---|---|---|---|
| 1 | Premier League | 1 | Premier League |
| 2 | Championship | 1 | Championship |
| 3 | League One | 1 | League One |
| 4 | League Two | 1 | League Two |
| 5 | National League | 1 | National League |
| 6 | National League N / S | 1 | National League N / S |
Competition Seasons
GET /CompetitionSeasons
| Query parameter | Required | Notes |
|---|---|---|
competition | No | Competition name filter. |
Examples
Team Examples
| TEAM_ID | TEAM_NAME |
|---|---|
| 1 | Brighton & Hove Albion |
| 9 | Arsenal |
| 134 | Crystal Palace |
| 136 | Manchester United |
Useful sample values for the team query parameter on /Fixtures.