# RacingPulse Greyhound Card

> RacingPulse Greyhound Card 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 a full greyhound field breakdown for any meeting worldwide, including trap suitability, value selections, system plays, and betting intelligence.

## Facts

- Endpoint: GET https://racingpulse.vercel.app/api/greyhound-card
- 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-greyhound-card-a186224f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ImCTgUsSGXeyAw3e4TJiY

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-greyhound-card-a186224f
```

Example prompt: Pull up the full greyhound card for Romford tonight — I want the trap suitability breakdown, any value selections, and the system plays for the whole meeting.

## When to prefer this

Use this endpoint when an agent needs a comprehensive pre-race greyhound card analysis for a specific meeting, including trap suitability, value picks, and system plays — as opposed to trap bias statistics (historical) or individual dog form (per runner). Best when the user wants a full card overview rather than a single dog or trap stat.

## Known failure modes

- Meeting not found or not yet available — returns error or empty card
- Invalid track or date parameter — returns 400 or empty response
- Meeting data not yet published by data provider — stale or missing card
- Rate limit or payment failure — 402 or 429 response

## How this service works

Full greyhound field breakdown — trap suitability, value selections, system plays and betting intel for any meeting worldwide. For greyhound betting agents.

## Output

A structured greyhound field breakdown for the requested meeting, including per-trap suitability ratings, value selections, statistically-backed system plays, and actionable betting intelligence across the card.

## 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"
      },
      "race": {
       "type": "string",
       "description": "specific race number or name e.g. \"race 3\" or \"A2 sprint\" (optional)"
      },
      "track": {
       "type": "string",
       "description": "track name e.g. romford, shelbourne-park, wentworth-park, the-meadows (required)"
      }
     }
    }
   },
   "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",
  "track": "Romford",
  "runners": [
   {
    "sp": "2/1F",
    "dog": "Swift Monarch",
    "trap": 1,
    "grade": "A2",
    "trainer": "J. Smith",
    "verdict": "Draw perfectly suits rails-running style — NAP of the meeting",
    "best_time": "24.31",
    "recent_form": "1-1-2-1",
    "trap_suitability": "ideal"
   },
   {
    "sp": "3/1",
    "dog": "Blazing Comet",
    "trap": 5,
    "grade": "A2",
    "trainer": "T. Brown",
    "verdict": "Wide draw forces extra ground — shorter price than merits",
    "best_time": "24.38",
    "recent_form": "1-2-1-3",
    "trap_suitability": "against"
   }
  ],
  "key_battle": "Traps 1 and 2 expected to clash for rail position on first bend",
  "meeting_info": "Saturday evening BAGS meeting — 8 races, A1-A3 grades",
  "system_plays": [
   "Rails runners from traps 1-2 in A2 grade at Romford: 34% strike rate at average 2.1/1"
  ],
  "trap_summary": "Draw heavily favours traps 1-3 at this track; traps 6-8 face significant disadvantage",
  "market_leader": "Swift Monarch (trap 1) — 2/1 favourite",
  "governing_body": "GBGB",
  "meeting_verdict": "Trap 1 advantage is decisive — Swift Monarch is the bet of the meeting at current price",
  "value_selection": "Lightning Storm (trap 3) at 4/1 — market underrates draw and recent sectional improvement"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/racingpulse-greyhound-card-a186224f/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)
