# RacingPulse Greyhound Trap Bias Analysis

> RacingPulse Greyhound Trap Bias Analysis 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 win rates per trap, rail vs wide advantage, pace profile, and actionable betting angles for a greyhound racing track.

## Facts

- Endpoint: GET https://racingpulse.vercel.app/api/greyhound-trap
- 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-trap-bias-analysis-1d46d169
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GmYsNImuzZHCdvS9zT5EB

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-trap-bias-analysis-1d46d169
```

Example prompt: What's the trap bias at Romford tonight — which traps have the best win rates, is there a rail or wide advantage, and what are the actionable betting angles I should know about?

## When to prefer this

Use this endpoint when you need trap-specific statistical bias and pace profiling for a greyhound track, rather than full field breakdowns or individual dog form — it is optimized for track-level structural advantage analysis to inform betting angles.

## Known failure modes

- Unknown or unsupported track name returns 404 or empty result
- Track with insufficient historical data may return limited statistics
- Invalid date format may return 400 error
- Payment failure returns 402 Payment Required

## How this service works

Greyhound trap bias — win rates per trap, rail vs wide advantage, pace profile and actionable angles for any track. For greyhound betting agents.

## Output

Returns a breakdown of win rates for each trap (1-6), rail vs wide advantage statistics, pace profile analysis, and specific actionable betting angles for the specified greyhound track.

## Example request

```json
{
 "date": "2024-01-15",
 "race": "1",
 "track": "romford"
}
```

## 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": {
      "grade": {
       "type": "string",
       "description": "race grade e.g. A1, A2, S2, OR, Free-for-All (optional)"
      },
      "track": {
       "type": "string",
       "description": "track name e.g. romford, shelbourne-park, the-meadows, wentworth-park (required)"
      },
      "distance": {
       "type": "string",
       "description": "race distance e.g. 400m, 460m, 520m, 710m (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": {
  "shape": "oval",
  "track": "Romford",
  "country": "UK",
  "surface": "sand",
  "bend_type": "tight",
  "top_traps": [
   1,
   2,
   3
  ],
  "trap_stats": [
   {
    "trap": 1,
    "notes": "Best trap at Romford — inside draw bypasses first bend trouble",
    "win_pct": 21,
    "running_style": "rails runner",
    "rail_advantage": "favoured"
   },
   {
    "trap": 6,
    "notes": "Must go extra wide on bend 1 — significant disadvantage",
    "win_pct": 10,
    "running_style": "wide runner",
    "rail_advantage": "disadvantaged"
   }
  ],
  "pace_profile": "fast early — trap 1 dogs set the pace on rail",
  "track_verdict": "Strong draw bias. Trap 1 wins 21% vs 12.5% statistically expected. Always weight draw heavily.",
  "betting_angles": [
   "Back rails runners from trap 1 in A2-A3 grades when SP > 2/1 — track bias underpriced by market"
  ],
  "governing_body": "GBGB",
  "traps_to_avoid": [
   6,
   7,
   8
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/racingpulse-greyhound-trap-bias-analysis-1d46d169/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)
