# RacingPulse Greyhound Form

> RacingPulse Greyhound Form 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 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.vercel.app/api/greyhound-form
- 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-form-4521559f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_x5J8QWMOqfXMZwsQDPndC

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-4521559f
```

Example prompt: Pull the full greyhound form for Slippy Blue running at Shelbourne Park tonight — I want recent runs, sectional times, trap record, kennel form, and the verdict before I place my bet.

## When to prefer this

Use this endpoint when you need detailed individual greyhound form analysis — recent runs, sectionals, trap record, and a verdict — for any track worldwide, as opposed to trap bias statistics (which are track-level), field breakdowns (which are race-level), or horse racing form endpoints.

## Known failure modes

- Greyhound not found — unknown dog name or misspelling returns an error or empty result
- Track not recognised — unrecognised or misspelled track name returns an error
- No recent form available — dog may be lightly raced or debut runner with insufficient data
- Service unavailable — Vercel deployment downtime or upstream data source failure
- Payment failure — x402 micropayment not completed, request rejected

## 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 report for the specified greyhound including its recent race results, sectional split times, trap win/place statistics, kennel and trainer form, and a summary verdict to aid betting decisions.

## 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-4521559f/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)
