# FootballPulse Match Preview

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

Returns a comprehensive pre-match preview including form, head-to-head history, injuries, xG comparison, key battles, predicted score, and primary bet recommendation for a football match.

## Facts

- Endpoint: GET https://footballpulse-six.vercel.app/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-474643c9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WBUmuv4Phu0VTER9X7kYD

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-474643c9
```

Example prompt: Give me the full match preview for Arsenal vs Manchester City this Saturday — form, head-to-head, injuries, xG comparison, key battles, and your predicted score with the primary bet to place.

## When to prefer this

Use this endpoint when you need a holistic pre-match breakdown for a specific football fixture before betting or previewing. It bundles form, H2H, injuries, xG, and a concrete bet recommendation in one call, saving multiple separate lookups. Prefer it over the value-bets or Asian-handicap endpoints when you want narrative match context and a single-match focus rather than cross-market EV analysis.

## Known failure modes

- Match not found or fixture ID invalid — returns 404 or empty result
- Teams or fixture not yet available in the data feed — stale or missing data
- Malformed request parameters — returns 400 bad request
- Payment not completed or insufficient funds — returns 402 Payment Required
- Service temporarily unavailable — returns 503

## 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 containing recent form for both teams, head-to-head history, injury and suspension lists, expected goals (xG) comparison, key tactical battles, a predicted scoreline, 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-474643c9/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)
