# FootballPulse Value Bets EV Analysis

> FootballPulse Value Bets EV Analysis 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-16).

Returns expected-value (EV) analysis for 1X2, BTTS, over/under 2.5, and Asian handicap markets across a football matchday

## Facts

- Endpoint: GET https://footballpulse.theaslangroupllc.com/api/value-bets
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/footballpulse-value-bets-ev-analysis-399e4202
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Fx0Ld0jvk_YfjFYQLEfUu

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-399e4202
```

Example prompt: Can you pull the value bets for today's matchday and show me which 1X2, BTTS, over/under 2.5, and Asian handicap markets have positive expected value?

## When to prefer this

Use this endpoint when you need a broad EV sweep across multiple betting markets (1X2, BTTS, over/under 2.5, Asian handicap) for an entire matchday, rather than a deep preview of a single match or parlay construction. Ideal for agents scanning for positive-EV opportunities across many fixtures simultaneously.

## Known failure modes

- No matches scheduled for the requested matchday — returns empty results
- Invalid or unsupported matchday parameter — returns 4xx error
- Odds data unavailable for a specific market — partial results returned
- Rate limit exceeded — returns 429 error
- Payment not processed — returns 402 error

## 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 structured list of value bet opportunities across 1X2, BTTS, over/under 2.5, and Asian handicap markets for the requested matchday, each annotated with EV scores and odds to help identify the most profitable bets.

## 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-399e4202/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)
