# FootballPulse Accumulator / Parlay Selections

> FootballPulse Accumulator / Parlay Selections 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 evidence-based multi-match parlay (accumulator) selections ranked by confidence, including EV analysis, a banker pick, and a stake guide for football betting.

## Facts

- Endpoint: GET https://footballpulse-six.vercel.app/api/accumulator
- 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-accumulator-parlay-selections-46e92a9f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0bI3iFruXcp10VnwfqWr7

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-accumulator-parlay-selections-46e92a9f
```

Example prompt: Can you pull together the best evidence-based accumulator picks for this weekend's football, ranked by confidence, and tell me which match to use as the banker and how much I should stake?

## When to prefer this

Use this endpoint when a user wants a curated, ranked multi-leg football parlay rather than a single-match analysis. It is preferred over the value-bets endpoint when the goal is specifically accumulator construction with a banker pick and stake guidance, rather than individual match EV screening.

## Known failure modes

- No matches available for the requested matchday — returns empty selection list
- Insufficient data to compute EV for some legs — partial selections returned
- Rate limit or payment failure — 402 or 429 error
- Service unavailable during off-season periods — 503 error
- Invalid query parameters — 400 error with explanation

## How this service works

Evidence-based multi-match parlay selections ranked by confidence — EV analysis, banker pick and stake guide. For football betting agents.

## Output

A ranked list of multi-match parlay selections for football, each with a confidence score and expected value (EV) analysis, plus a designated banker pick and a recommended stake guide to help size the bet.

## 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/weekend"
      },
      "lang": {
       "type": "string",
       "description": "en | es | fr | de | pt | ja | zh | ko | ar (default: en)"
      },
      "leagues": {
       "type": "string",
       "description": "comma-separated league codes e.g. PL,PD,BL1,SA,FL1 (optional, defaults to top 5)"
      },
      "max_legs": {
       "type": "string",
       "description": "maximum number of selections, 2-8 (default 5). Pay-per-leg via the upto scheme: $0.07 + $0.01/leg (5 legs = $0.12); exact-scheme payments are flat $0.15."
      },
      "strategy": {
       "type": "string",
       "description": "value | safe | btts | goals | mixed (default: value)"
      }
     }
    }
   },
   "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",
  "strategy": "value",
  "selections": [
   {
    "pick": "Over 2.5",
    "match": "Arsenal vs Chelsea",
    "market": "Over 2.5 Goals",
    "confidence": "HIGH",
    "competition": "Premier League",
    "decimal_odds": "1.72"
   },
   {
    "pick": "Yes",
    "match": "Bayern vs Dortmund",
    "market": "BTTS",
    "confidence": "HIGH",
    "competition": "Bundesliga",
    "decimal_odds": "1.85"
   }
  ],
  "acca_summary": {
   "risk_rating": "MEDIUM RISK",
   "combined_odds": "8.20",
   "ev_assessment": "Positive EV"
  },
  "banker_selection": "Over 2.5 Goals — Arsenal vs Chelsea"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/footballpulse-accumulator-parlay-selections-46e92a9f/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)
