# FootballPulse Live In-Play Intelligence

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

Delivers real-time in-play football match intelligence including momentum shifts, xG trajectory, dangerous attacks, substitution impact analysis, and live betting recommendations.

## Facts

- Endpoint: GET https://footballpulse.theaslangroupllc.com/api/live-intel
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/footballpulse-live-in-play-intelligence-e1718ebe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lHh0HCoVF6SdjWDK_ufYz

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-e1718ebe
```

Example prompt: What's the live in-play situation for the Arsenal vs Chelsea match right now — give me the momentum trend, xG trajectory, dangerous attacks, and whether there's a smart in-play bet to make?

## When to prefer this

Use this endpoint when you need real-time, in-play intelligence for a currently live football match — specifically when a user wants momentum analysis, xG trajectory, dangerous attack tracking, substitution impact, or actionable in-play bet recommendations. Prefer this over pre-match endpoints when the match is already underway and live conditions are required.

## Known failure modes

- Match not currently live — returns error if the requested match has not started or has already ended
- Invalid or unrecognized match ID — returns 404 or empty response
- Data latency during high-traffic periods may slightly delay live figures
- No recommendations available if match data is insufficient to generate confident signals

## 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 real-time in-play intelligence for a live football match, including momentum indicators, expected goals (xG) trajectory over time, dangerous attack statistics, analysis of substitution impacts on match dynamics, and specific in-play betting recommendations based on the current state of play.

## 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-e1718ebe/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)
