# FootballPulse Match Preview

> FootballPulse Match Preview 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-15).

Generates a comprehensive pre-match analysis including form, head-to-head stats, injuries, xG comparison, key battles, predicted score, and primary betting recommendation for a football match.

## Facts

- Endpoint: GET https://footballpulse.theaslangroupllc.com/api/match-preview
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/footballpulse-match-preview-7084a347
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ArpetheNcxABPBjmP5Ia3

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-match-preview-7084a347
```

Example prompt: Can you pull up a full match preview for the Arsenal vs Chelsea game this Saturday — give me the form, H2H, injuries, xG comparison, key battles, the predicted score, and what the primary bet should be?

## When to prefer this

Use this endpoint when you need a holistic pre-match intelligence package for a single football fixture, especially when the goal is to inform a betting decision. It combines form, H2H, xG, injuries, and a primary bet call in one call, saving multiple separate data lookups. Prefer this over the value bets or Asian handicap endpoints when you want a narrative match preview rather than pure market-edge analysis.

## Known failure modes

- Match not found or fixture ID invalid — returns 404 or error response
- Match data not yet available for future fixtures too far out — incomplete or empty fields
- Injury or lineup data unavailable close to kickoff — partial response
- API rate limit or payment failure — 402 or 429 error
- Unsupported league or competition — no data returned

## How this service works

Match preview — form, H2H, injuries, xG comparison, key battles, predicted score and the primary bet. For football betting agents.

## Output

A structured match preview report covering recent form for both teams, historical head-to-head record, current injury/availability news, expected goals (xG) comparison, key tactical and player battles, a predicted final score, and a single primary bet recommendation with supporting rationale.

## 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"
      },
      "date": {
       "type": "string",
       "description": "optional"
      },
      "home": {
       "type": "string",
       "description": "required"
      },
      "lang": {
       "type": "string",
       "description": "en | es | fr | de | pt | ja | zh | ko | ar (default: en)"
      },
      "league": {
       "type": "string",
       "description": "league code or name e.g. PL, La Liga, Bundesliga, Serie A, UCL (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": {
  "h2h": {
   "draws": 2,
   "away_wins": 4,
   "home_wins": 4,
   "recent_meetings": [
    {
     "date": "2025-10-05",
     "result": "Arsenal 2-1 Chelsea",
     "competition": "PL"
    }
   ]
  },
  "form": {
   "away": {
    "last_5": "WDWLD",
    "goals_scored_avg": 1.8
   },
   "home": {
    "last_5": "WWDWW",
    "goals_scored_avg": 2.2
   }
  },
  "away_team": "Chelsea",
  "home_team": "Arsenal",
  "competition": "Premier League",
  "primary_bet": "Arsenal to win or draw Asian Handicap -0.5",
  "value_angle": "Arsenal at home have covered AH -0.5 in 70% of fixtures this season"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/footballpulse-match-preview-7084a347/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)
