# FootballPulse Player Intelligence

> FootballPulse Player 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-13).

Retrieves comprehensive player intelligence including goals, assists, xG/xA, injury status, market value, FPL value, card risk, penalty status, and transfer news for fantasy and betting use cases.

## Facts

- Endpoint: GET https://footballpulse-six.vercel.app/api/player-intel
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/footballpulse-player-intelligence-3abb013a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WleFa-ErdFRlBbQNLlvLK

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-player-intelligence-3abb013a
```

Example prompt: Pull up the full player intel on Bukayo Saka — I need his xG, xA, injury status, FPL value, card risk, whether he's on penalties, and any transfer news before I finalise my fantasy team and bets this gameweek.

## When to prefer this

Choose this endpoint when you need granular, multi-dimensional intelligence on a specific player — particularly when combining fantasy football metrics (FPL value, ownership) with betting signals (card risk, xG/xA, penalty status) and injury or transfer news in a single call. Prefer this over league-level or match-level endpoints when the decision unit is an individual player.

## Known failure modes

- Player not found — invalid or misspelled player name returns 404 or empty result
- Player exists but data is stale due to recent transfer or league change
- Injury status not yet updated after last training session
- Market value data lag if no recent transfer activity
- Rate limit exceeded returns 429 error
- Payment not processed returns 402 requiring USDC payment

## How this service works

Player intelligence — goals, assists, xG/xA, injury status, market value, FPL value, card risk, penalty status and transfer news. For fantasy and betting agents.

## Output

Returns a structured profile for the queried player covering performance metrics (goals, assists, xG, xA), current injury status, market value, FPL price and ownership, card risk rating, penalty taker status, and latest transfer rumours or news — all tailored for fantasy and betting decision-making.

## 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)"
      },
      "team": {
       "type": "string",
       "description": "club name for disambiguation e.g. Arsenal (optional)"
      },
      "league": {
       "type": "string",
       "description": "optional"
      },
      "player": {
       "type": "string",
       "description": "required"
      }
     }
    }
   },
   "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": {
  "team": "Manchester City",
  "player": "Erling Haaland",
  "position": "Striker",
  "nationality": "Norwegian",
  "injury_status": {
   "detail": "Training normally",
   "status": "FIT",
   "expected_return": "N/A"
  },
  "advanced_stats": {
   "xa": 3.8,
   "xg": 24.3,
   "shots_per_90": 4.2
  },
  "current_season": {
   "goals": 27,
   "assists": 5,
   "appearances": 32,
   "yellow_cards": 2
  },
  "betting_relevance": {
   "card_risk": "LOW",
   "penalty_taker": true,
   "anytime_scorer_probability": "68%"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/footballpulse-player-intelligence-3abb013a/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)
