# RacingPulse Greyhound Card

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

## Facts

- Endpoint: GET https://racingpulse.theaslangroupllc.com/api/greyhound-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-greyhound-card-3c751485
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GjENA5PaS_-MSKSe_v-Le

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-3c751485
```

Example prompt: Pull the full greyhound card for tonight's Romford meeting — I want trap suitability ratings, the system plays, and any value selections you can flag across all races.

## When to prefer this

Use this endpoint when you need a comprehensive greyhound-specific race card with trap analysis and betting selections, as opposed to horse racing cards or generic odds feeds. Ideal for greyhound betting agents that need structured field breakdowns and value identification rather than raw odds data alone.

## Known failure modes

- Meeting not found — invalid venue or date returns empty or error response
- No data available for the requested meeting (future or cancelled event)
- Malformed meeting identifier causes 400 bad request
- Service unavailable or payment not processed returns 402 or 503

## 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 breakdown of the greyhound race meeting including per-runner trap suitability scores, highlighted value selections, system play recommendations, and actionable betting intelligence for all races at the specified meeting.

## 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-3c751485/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)
