# FootballPulse Clean-Sheet Probability

> FootballPulse Clean-Sheet Probability 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-16).

Returns clean-sheet probability for a football match using goalkeeper stats, defensive metrics, home/away splits, BTTS and under-2.5 analysis

## Facts

- Endpoint: GET https://footballpulse.theaslangroupllc.com/api/clean-sheet
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/footballpulse-clean-sheet-probability-ea4c6e31
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2PBkEuH1kmFQXNELJwY3M

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-clean-sheet-probability-ea4c6e31
```

Example prompt: What's the clean-sheet probability for Arsenal at home against Chelsea this weekend — include their goalkeeper stats, defensive metrics, BTTS chances, and under-2.5 analysis so I can decide on a correct-score or clean-sheet bet?

## When to prefer this

Choose this endpoint when you specifically need clean-sheet probability combined with goalkeeper performance stats, defensive line metrics, and BTTS/under-2.5 market analysis for a single football match. Prefer over the general match preview endpoint when the user's focus is defensively-oriented betting markets (correct score, clean sheet, under 2.5, BTTS No).

## Known failure modes

- Match not found or invalid match ID returns 404 error
- Missing required team or match parameter returns 400 bad request
- Stats not yet available for future match returns empty or partial data
- Payment not processed returns 402 Payment Required
- Rate limiting or quota exceeded returns 429 Too Many Requests

## How this service works

Clean-sheet probability — goalkeeper stats, defensive metrics, home/away split, BTTS and under-2.5 analysis. For football betting agents.

## Output

Returns clean-sheet probability percentage alongside goalkeeper stats, team defensive metrics, home/away performance splits, BTTS probability, and under-2.5 goals probability — all contextualized for football betting decision-making.

## 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": "required"
      },
      "league": {
       "type": "string",
       "description": "optional"
      },
      "home_away": {
       "type": "string",
       "description": "home | away | both (default: both)"
      }
     }
    }
   },
   "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": "Arsenal",
  "goalkeeper": {
   "name": "David Raya",
   "saves_per_game": 2.8,
   "save_percentage": "74%"
  },
  "competition": "Premier League",
  "season_stats": {
   "played": 32,
   "clean_sheets": 14,
   "clean_sheet_rate": "43.8%",
   "goals_conceded_avg": 0.9
  },
  "market_analysis": {
   "btts_probability": "48%",
   "value_assessment": "Arsenal CS has value at prices over 2.20",
   "under_2_5_probability": "52%"
  },
  "clean_sheet_probability": "38%"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/footballpulse-clean-sheet-probability-ea4c6e31/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)
