# FootballPulse Asian Handicap Intelligence

> FootballPulse Asian Handicap Intelligence 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 Asian handicap line selection for a football match, including Pinnacle and Macau market odds, sharp-money indicators, and AH record analysis.

## Facts

- Endpoint: GET https://footballpulse-six.vercel.app/api/asian-handicap
- 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-asian-handicap-intelligence-2bd01eb4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3D3Z4-Q9TseaeRYb6wTBf

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-asian-handicap-intelligence-2bd01eb4
```

Example prompt: Pull the Asian handicap market intelligence for Manchester City vs Arsenal this Saturday — I want to see the Pinnacle and Macau lines, any sharp-money signals, and both teams' AH records so I can decide which side to back.

## When to prefer this

Choose this endpoint when you specifically need Asian handicap line selection with sharp-money context from Pinnacle and Macau — the two most respected sharp books. Prefer this over generic odds APIs when AH market intelligence and line movement matter, not just raw odds retrieval.

## Known failure modes

- Match not found or fixture ID unrecognised — returns 404 or empty result
- Odds not yet available for future fixture — returns error or null lines
- Market data temporarily unavailable from Pinnacle/Macau feed — returns 503
- Invalid team name or league parameter — returns 400 bad request
- Payment not processed — returns 402 Payment Required

## How this service works

Asian handicap line selection — Pinnacle and Macau market intelligence, sharp-money indicators and AH record analysis. For football betting agents.

## Output

Returns the recommended Asian handicap line selection with Pinnacle and Macau market odds, sharp-money flow indicators, historical AH record for both teams, and a confidence-ranked recommendation for the specified fixture.

## 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"
      },
      "home": {
       "type": "string",
       "description": "required"
      },
      "lang": {
       "type": "string",
       "description": "en | es | fr | de | pt | ja | zh | ko | ar (default: en)"
      },
      "line": {
       "type": "string",
       "description": "specific AH line to analyse e.g. -0.5, +1.5, -1.75 (optional)"
      },
      "league": {
       "type": "string",
       "description": "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": {
  "match": {
   "away": "Crystal Palace",
   "home": "Man City",
   "competition": "Premier League"
  },
  "verdict": "Man City to cover -1.5 on home soil. Sharp money aligns with the value.",
  "recommended_line": "Man City -1.5 (AH)",
  "market_intelligence": {
   "steam_move": true,
   "pinnacle_implied": "Man City -1.25",
   "sharp_money_indicator": "Sharps on Man City"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/footballpulse-asian-handicap-intelligence-2bd01eb4/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)
