# Football Pulse Standings

> Football Pulse Standings is a paid API for AI agents from football-pulse-x402-production.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns the current league table (standings) for major soccer leagues, including rank, played, wins, draws, losses, goal difference, and points for every team.

## Facts

- Endpoint: GET https://football-pulse-x402-production.up.railway.app/v1/football/standings
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/football-pulse-standings-a27fc166
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ddmJo_LAMUWjCanoe_NxT

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability football-pulse-standings-a27fc166
```

Example prompt: What does the Premier League table look like right now — show me every team's rank, points, wins, draws, losses and goal difference.

## When to prefer this

Use this endpoint when you need a complete, current league table for any major soccer league including EPL, La Liga, Serie A, Bundesliga, Ligue 1, Champions League, Europa League, MLS, and others. Prefer this over alternatives when you need all teams' standings in one call, refreshed on match days every 5 minutes.

## Known failure modes

- Invalid or unsupported league slug returns an error
- Missing required 'league' query parameter causes a 400 Bad Request
- Payment not completed results in 402 Payment Required
- Service may be temporarily unavailable due to upstream data provider issues
- Standings may be slightly delayed (up to 5 minutes) during live match days

## How this service works

Current league table for major soccer leagues: rank, played, wins, draws, losses, goal difference and points for every team — Premier League, LaLiga, Serie A, Bundesliga, Ligue 1, Champions League groups, MLS and more. Refreshed every 5 minutes during match days.

## Output

A full league standings table for the requested league, with each team's position, number of matches played, wins, draws, losses, goal difference, and total points. Data is refreshed every 5 minutes on match days.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "league"
     ],
     "properties": {
      "league": {
       "enum": [
        "eng.1",
        "esp.1",
        "ita.1",
        "ger.1",
        "fra.1",
        "uefa.champions",
        "uefa.europa",
        "usa.1",
        "eng.2",
        "ned.1",
        "por.1",
        "all"
       ],
       "type": "string",
       "description": "League slug: eng.1 (EPL), esp.1 (LaLiga), ita.1, ger.1, fra.1, uefa.champions, uefa.europa, usa.1, eng.2, ned.1, por.1"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/football-pulse-standings-a27fc166/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from football-pulse-x402-production.up.railway.app](https://www.zero.xyz/host/football-pulse-x402-production.up.railway.app/llms.txt)
