# FootballPulse Live In-Play Intelligence

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

Delivers real-time in-play football analytics including momentum shifts, xG trajectory, dangerous attacks, substitution impact, and live bet recommendations for ongoing matches.

## Facts

- Endpoint: GET https://footballpulse-six.vercel.app/api/live-intel
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/footballpulse-live-in-play-intelligence-3a00164f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zOMsdG6ZGDaW0WoiLJh43

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-live-in-play-intelligence-3a00164f
```

Example prompt: Give me live in-play intelligence for the Arsenal vs Chelsea match happening right now — I want the momentum swing, xG trajectory, dangerous attack counts, any substitution impact, and your top in-play bet recommendation based on current game state.

## When to prefer this

Use this endpoint when you need real-time, in-play intelligence during a live football match rather than pre-match previews or post-match analysis. It is specifically suited for live betting agents that need momentum, xG, and substitution data mid-match to generate actionable wagering recommendations.

## Known failure modes

- Match not currently live — returns error if match ID is not in active play
- Invalid or unrecognized match identifier
- No live matches available at time of call
- Rate limit exceeded or payment not processed
- Data feed temporarily unavailable for the requested match

## How this service works

Live in-play intelligence — momentum, xG trajectory, dangerous attacks, substitution impact and in-play bet recommendations. For live football betting agents.

## Output

Returns a real-time snapshot of the live match including momentum indicators, xG trajectory curve, dangerous attack tallies for each team, substitution impact assessments, and ranked in-play bet recommendations with confidence signals.

## 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": {
      "away": {
       "type": "string",
       "description": "required"
      },
      "home": {
       "type": "string",
       "description": "required"
      },
      "lang": {
       "type": "string",
       "description": "en | es | fr | de | pt | ja | zh | ko | ar (default: en)"
      },
      "score": {
       "type": "string",
       "description": "optional"
      },
      "minute": {
       "type": "string",
       "description": "optional"
      }
     }
    }
   },
   "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": {
  "match": {
   "away": "Tottenham",
   "home": "Liverpool",
   "score": "1-0",
   "minute": "67",
   "status": "LIVE"
  },
  "momentum": {
   "dominant_team": "Liverpool",
   "pressure_index": "72%",
   "dangerous_attacks_away": 6,
   "dangerous_attacks_home": 14
  },
  "xg_trajectory": {
   "away_xg": 0.6,
   "home_xg": 1.8,
   "overperforming_team": "None",
   "model_expected_score": "2-0"
  },
  "best_in_play_bet": "Liverpool to score next — xG dominance suggests goal #2 is coming"
 }
}
```

## More

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