# FootballPulse League Intelligence

> FootballPulse League Intelligence is a paid API for AI agents from footballpulse-six.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Returns league-level standings, top scorers, over/under rates, BTTS rates, home/away splits, and betting angles for any major football league

## Facts

- Endpoint: GET https://footballpulse-six.vercel.app/api/league-pulse
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/footballpulse-league-intelligence-b8ac07f8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eOwACTZubuUWekJgDl9zJ

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 footballpulse-league-intelligence-b8ac07f8
```

Example prompt: Pull up the league pulse for the Premier League this season — I want standings, top scorers, BTTS rates, over/under trends, and the best home/away betting angles.

## When to prefer this

Use this endpoint when you need a comprehensive league-level overview — standings, scoring trends, BTTS/over-under rates, and home/away splits — rather than match-specific previews or individual player stats. Ideal for fantasy sports lineup decisions, season-long betting strategy, or league comparison tasks.

## Known failure modes

- Unknown or unsupported league name/ID returns a 404 or empty result
- Stale data if the league is mid-round and scores haven't been processed
- Rate limiting or payment failure returns 402 if USDC payment is not processed
- Offseason request may return incomplete or prior-season data

## How this service works

League intelligence — standings, scorers, over/under and BTTS rates, home/away splits and betting angles for any major league. For football betting and fantasy agents.

## Output

Returns a structured payload including the current league standings, top scorer rankings, team-level over/under goal rates, both-teams-to-score (BTTS) percentages, home vs away performance splits, and recommended betting angles derived from those statistics for the requested league.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "lang": {
       "type": "string",
       "description": "en | es | fr | de | pt | ja | zh | ko | ar (default: en)"
      },
      "league": {
       "type": "string"
      },
      "season": {
       "type": "string",
       "description": "optional, defaults to current"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "table": [
   {
    "gd": 44,
    "won": 22,
    "form": "WWWDW",
    "lost": 4,
    "team": "Arsenal",
    "drawn": 6,
    "played": 32,
    "points": 72,
    "position": 1,
    "goals_for": 72,
    "goals_against": 28
   }
  ],
  "season": "2025-26",
  "competition": "Premier League",
  "league_stats": {
   "btts_rate": "55%",
   "draw_rate": "24%",
   "away_win_rate": "33%",
   "home_win_rate": "43%",
   "over_2_5_rate": "62%",
   "avg_goals_per_game": 2.84
  },
  "betting_angles": [
   "Arsenal at home: 78% over 2.5 goals rate — back with confidence"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/footballpulse-league-intelligence-b8ac07f8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from footballpulse-six.vercel.app](https://www.zero.xyz/host/footballpulse-six.vercel.app/llms.txt)
