# RacingPulse Race Card Briefing

> RacingPulse Race Card Briefing is a paid API for AI agents from racingpulse.theaslangroupllc.com, paid per call via x402, $0.07/call, status unknown (last checked 2026-09-14).

Returns a complete race-meeting briefing card combining odds, going conditions, and latest news for horse-racing events in a single response.

## Facts

- Endpoint: GET https://racingpulse.theaslangroupllc.com/api/card
- Price: $0.07/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/racingpulse-race-card-briefing-f8f2e0a9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vrpQOBR8eTMMS573aVPV9

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-race-card-briefing-f8f2e0a9
```

Example prompt: Pull me the full race card briefing for today's meeting at Cheltenham — I need the odds, going conditions, and latest news all in one.

## When to prefer this

Choose this endpoint when you need a consolidated, single-call briefing for a horse-racing meeting rather than querying odds, going, and news separately. Ideal for betting agents that need a quick pre-race snapshot without chaining multiple API calls. Use over the dedicated going-conditions or arbitrage endpoints when you want a holistic overview rather than a specific data point.

## Known failure modes

- No race meeting found for the specified course or date — returns empty or 404
- Stale odds if bookmakers have not updated since last sync
- Going conditions unavailable for less-covered international courses
- Payment not processed (x402 payment required, returns 402 if unpaid)
- Invalid meeting identifier returns an error response

## How this service works

Complete race-meeting briefing — odds, going and news in one card. For horse-racing betting agents.

## Output

A structured race-meeting card containing current bookmaker odds, ground and going conditions for the racecourse, and relevant news or updates for the meeting — all consolidated into a single response for rapid betting-agent decision-making.

## 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": "YYYY-MM-DD (optional)"
      },
      "track": {
       "type": "string",
       "description": "ascot | cheltenham | flemington | etc"
      }
     }
    }
   },
   "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-06",
  "going": "Good to Firm",
  "races": [
   {
    "name": "Royal Hunt Cup",
    "time": "14:30",
    "runners": [],
    "distance": "1m"
   }
  ],
  "track": "ascot",
  "key_trends": [],
  "going_trend": "Drying",
  "moisture_index": 18.5,
  "news_headlines": [],
  "meeting_summary": "Fast ground expected throughout the day"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/racingpulse-race-card-briefing-f8f2e0a9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from racingpulse.theaslangroupllc.com](https://www.zero.xyz/host/racingpulse.theaslangroupllc.com/llms.txt)
