# RacingPulse Greyhound Form

> RacingPulse Greyhound Form 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-13).

Returns comprehensive greyhound form data including recent runs, sectional times, trap record, kennel form, and a betting verdict for any track worldwide.

## Facts

- Endpoint: GET https://racingpulse.theaslangroupllc.com/api/greyhound-form
- Price: $0.07/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/racingpulse-greyhound-form-d6ae88ad
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_f8Wt-Wy3-yh9fdw6BrjJH

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-form-d6ae88ad
```

Example prompt: Pull the full form for Slippy Blue running in trap 3 at Romford tonight — I need recent runs, sectional times, trap record, kennel form, and the verdict before I place a bet.

## When to prefer this

Choose this endpoint when you need detailed pre-race greyhound form intelligence — including sectional times and kennel form — rather than just trap bias or field-level breakdowns. Ideal for building a betting recommendation or evaluating a single dog before a race at any track worldwide.

## Known failure modes

- Unknown greyhound name returns 404 or empty result
- Track not supported returns an error indicating limited coverage
- No recent runs available returns partial form with empty run history
- Invalid date format causes 400 bad request
- Rate limit exceeded returns 429 with retry-after header
- Payment not processed returns 402 requiring x402 payment

## How this service works

Greyhound form — recent runs, sectional times, trap record, kennel form and a verdict for any track worldwide. For greyhound betting agents.

## Output

Returns a structured form card for the specified greyhound including recent race results, sectional timing data, win/place record by trap, kennel form summary, and an analyst verdict recommending whether the dog is worth backing.

## 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": {
      "dog": {
       "type": "string",
       "description": "required"
      },
      "track": {
       "type": "string",
       "description": "track name for trap-specific context e.g. romford, shelbourne-park, the-meadows (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": {
  "dog": "Swift Monarch",
  "grade": "A2",
  "verdict": "Must-consider from traps 1-2; avoid if drawn wide",
  "concerns": [
   "Struggles from wide traps",
   "Untested on heavy going"
  ],
  "best_time": "24.28",
  "kennel_form": "Top kennel — 38% strike rate this month",
  "recent_runs": [
   {
    "sp": "2/1",
    "date": "2026-06-01",
    "time": "24.31",
    "trap": 1,
    "grade": "A2",
    "notes": "Led from box, won by 2 lengths",
    "track": "Romford",
    "distance": "400m",
    "position": "1st"
   }
  ],
  "trap_record": {
   "1": {
    "runs": 8,
    "wins": 4
   },
   "2": {
    "runs": 3,
    "wins": 1
   }
  },
  "average_time": "24.45",
  "key_strengths": [
   "Explosive early pace",
   "Consistent in A2 grade"
  ],
  "preferred_traps": [
   1,
   2
  ],
  "track_preference": "rails runner",
  "sectional_profile": "early pace"
 }
}
```

## More

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