# RacingPulse Betting Systems

> RacingPulse Betting Systems is a paid API for AI agents from racingpulse.vercel.app, paid per call via x402, $0.07/call, status unknown (last checked 2026-09-15).

Returns statistically-backed horse racing betting systems including trainer/jockey combo angles and historical trends

## Facts

- Endpoint: GET https://racingpulse.vercel.app/api/systems
- Price: $0.07/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/racingpulse-betting-systems-d0af4332
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TuF7kUfRAG2PpKRlYdmIb

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 racingpulse-betting-systems-d0af4332
```

Example prompt: Pull up the RacingPulse betting systems for me — I want to see the statistically-backed angles and any strong trainer/jockey combinations worth following right now.

## When to prefer this

Use this endpoint when you need curated, statistically-validated betting systems and angles rather than raw race data or live odds. Prefer this over the trends or form guide endpoints when the user wants pre-built, actionable system bets rather than manual analysis.

## Known failure modes

- No systems available for current conditions — returns empty result set
- Rate limit exceeded after payment — 402 or 429 response
- Service unavailable on Vercel deployment — 503 response
- Invalid query parameters — 400 bad request with error detail

## How this service works

Global horse racing intelligence — live odds, going conditions, form analysis, arbitrage detection, speed ratings, and betting systems for 35 racecourses. All endpoints require x402 payment (USDC on Base mainnet) via the PAYMENT-SIGNATURE header.

## Output

A structured list of horse racing betting systems, each backed by statistical evidence, including trainer/jockey combination data, historical win rates, trend analyses, and actionable value angles for bettors.

## Example request

```json
{}
```

## 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": {
      "filter": {
       "type": "string",
       "description": "e.g. \"Ascot sprints\", \"novice hurdlers\", \"flat handicaps\""
      }
     }
    }
   },
   "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": {
  "filter": "Ascot sprints",
  "systems": [
   {
    "roi": "+18%",
    "name": "High draw bias 5f",
    "confidence": "high",
    "description": "Horses drawn 12+ win 35% of 5f sprints at Ascot",
    "sample_size": "250 races",
    "strike_rate": "35%"
   }
  ],
  "draw_bias": "High draw significant in sprints",
  "key_trends": [
   "Top weight wins at 22% in Class 2 handicaps"
  ],
  "analyst_note": "Data from publicly available race statistics",
  "going_angles": [
   "Stall 1-5 lose on Good to Firm 5f"
  ],
  "distance_patterns": [
   "6f favours hold-up horses on soft"
  ],
  "trainer_jockey_combos": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/racingpulse-betting-systems-d0af4332/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from racingpulse.vercel.app](https://www.zero.xyz/host/racingpulse.vercel.app/llms.txt)
