# FootballPulse Value Bets EV Analysis

> FootballPulse Value Bets EV Analysis 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 expected value (EV) analysis and value bet recommendations across 1X2, BTTS, over/under 2.5, and Asian handicap markets for a given football matchday

## Facts

- Endpoint: GET https://footballpulse-six.vercel.app/api/value-bets
- 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-value-bets-ev-analysis-0dd4ae27
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JNXeftdaTnQblCMpBNLso

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-value-bets-ev-analysis-0dd4ae27
```

Example prompt: Show me all value bets with positive EV for this weekend's football matchday across 1X2, BTTS, over/under 2.5, and Asian handicap markets.

## When to prefer this

Use this endpoint when you need quantitative EV-based value bet identification across multiple football betting markets simultaneously, particularly when an agent is automating or assisting with football betting decisions and needs structured, per-market analysis rather than raw odds data.

## Known failure modes

- No matchday data available for the requested date — returns empty results or 404
- Bookmaker odds not yet published for future fixtures — incomplete EV calculations
- Rate limit or payment failure — 402 response requiring valid x402 USDC payment
- Invalid matchday parameter — 400 bad request
- Upstream odds feed unavailable — 503 or degraded response

## How this service works

Value bets — EV analysis across 1X2, BTTS, over/under 2.5 and Asian handicap for any matchday. For football betting agents.

## Output

A list of value bet recommendations for football matches on the requested matchday, each including the market type (1X2, BTTS, over/under 2.5, or Asian handicap), the recommended selection, the implied probability, the fair value probability, and the calculated expected value indicating edge over bookmaker odds.

## 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": {
      "date": {
       "type": "string",
       "description": "optional, defaults to today"
      },
      "lang": {
       "type": "string",
       "description": "en | es | fr | de | pt | ja | zh | ko | ar (default: en)"
      },
      "league": {
       "type": "string"
      },
      "market": {
       "type": "string",
       "description": "all | btts | goals | result | handicap (default: all)"
      }
     }
    }
   },
   "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": {
  "date": "2026-06-07",
  "matches": [
   {
    "away": "Chelsea",
    "home": "Arsenal",
    "best_bet": "Over 2.5 Goals",
    "ev_rating": "HIGH",
    "confidence": "HIGH"
   }
  ],
  "competition": "Premier League",
  "league_stats": {
   "btts_rate": "55%",
   "home_win_rate": "43%",
   "over_2_5_rate": "62%",
   "avg_goals_per_game": 2.84
  },
  "top_value_pick": "Arsenal vs Chelsea — Over 2.5 Goals at 1.72"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/footballpulse-value-bets-ev-analysis-0dd4ae27/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)
