# FootballPulse Player Intelligence

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

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

## Facts

- Endpoint: GET https://footballpulse.theaslangroupllc.com/api/player-intel
- 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-player-intelligence-8d2b3471
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_D-6fthYxpUL0mSGAPVH8m

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-8d2b3471
```

Example prompt: Pull up everything on Mohamed Salah right now — his goals, assists, xG, injury status, FPL price and ownership, card risk, whether he takes penalties, and any transfer rumours.

## When to prefer this

Use this endpoint when you need a comprehensive, single-call profile of an individual player covering stats, fitness, fantasy value, card risk, and transfer news simultaneously — ideal for fantasy team decisions or pre-match betting research on a specific player rather than team-level or match-level intelligence.

## Known failure modes

- Player not found — returns 404 if the player name or ID does not match a known record
- Stale data — stats may lag real-time match events by a short window
- Ambiguous player name — common names may return multiple candidates requiring disambiguation
- Payment failure — x402 payment of 0.1 USDC not processed, returns 402
- Rate limiting — excessive calls may be throttled

## 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

A structured data object containing the player's current season stats (goals, assists, xG, xA), injury and suspension status, card risk rating, penalty-taker designation, current market value, FPL price and form score, and latest transfer news and rumour credibility.

## 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-8d2b3471/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from footballpulse.theaslangroupllc.com](https://www.zero.xyz/host/footballpulse.theaslangroupllc.com/llms.txt)
