# FootballPulse Corner & Cards API

> FootballPulse Corner & Cards API is a paid API for AI agents from footballpulse-six.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Returns corner statistics, booking points, referee card rates, and over/under probabilities for football corner and booking specialty markets.

## Facts

- Endpoint: GET https://footballpulse-six.vercel.app/api/corner-cards
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/footballpulse-corner-cards-api-f33f6ca6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TVo7vLpjfSpVMNjcz2Ayh

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-corner-cards-api-f33f6ca6
```

Example prompt: Pull the corner and booking market data for Manchester City vs Arsenal this Saturday — I want the corner stats, booking points, referee card rates, and over/under probabilities so I can place a specialty bet.

## When to prefer this

Use this endpoint when an agent or user specifically needs corner market data (average corners, over/under corners) or booking/disciplinary market data (booking points, referee card rates) for football matches, rather than general match previews, 1X2 odds, or Asian handicap lines. It is the specialist choice for corner and cards betting markets.

## Known failure modes

- Match not found — invalid or unrecognised fixture identifier returns an error
- Unsupported league or competition returns no data
- Stale data if fixture has not yet been indexed
- Rate limit or payment failure returns 402 or 429 status
- Missing required parameters such as match ID or date returns 400 error

## How this service works

Corner and booking markets — corner stats, booking points, referee card rates and over/under probabilities. For football specialty-market betting agents.

## Output

Returns corner statistics (e.g. average corners per game, home/away splits), booking points data, referee-specific card rates, and over/under probabilities for the corner and booking markets for the requested match or 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)"
      },
      "referee": {
       "type": "string",
       "description": "optional"
      },
      "competition": {
       "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": "Chelsea",
   "home": "Arsenal",
   "competition": "Premier League"
  },
  "corners": {
   "away_avg_for": 5.2,
   "home_avg_for": 6.8,
   "corner_verdict": "Back over 9.5 corners — both teams average high corner counts",
   "combined_expected": 10.8,
   "over_9_5_probability": "62%"
  },
  "bookings": {
   "bookings_verdict": "Expect a card-heavy affair — referee averages 4.2 cards per game",
   "booking_points_expected": 32,
   "over_30_points_probability": "54%"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/footballpulse-corner-cards-api-f33f6ca6/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)
