# RacingPulse Greyhound Trap Bias Analyzer

> RacingPulse Greyhound Trap Bias Analyzer 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-15).

Returns win rates per trap, rail vs wide advantage, pace profiles, and actionable betting angles for greyhound racing at any track.

## Facts

- Endpoint: GET https://racingpulse.theaslangroupllc.com/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-analyzer-2d2a14d1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HnW14pSeU9oDY-j9Hb60W

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-analyzer-2d2a14d1
```

Example prompt: Can you pull up the trap bias stats for Romford greyhound track — I want to know which traps have the best win rates, whether rail or wide runners have the edge, and any actionable betting angles for tonight's card?

## When to prefer this

Use this endpoint when you need trap-specific statistical bias data for greyhound racing — particularly win rates per trap, rail vs wide draw advantage, and pace profiles. Prefer this over the full greyhound field breakdown endpoint when you only need trap bias data rather than full field analysis, and over the greyhound form endpoint when trap statistics rather than individual dog form are the focus.

## Known failure modes

- Unknown or unsupported track name returns a 404 or empty result
- Insufficient historical data for a track may return low-confidence or partial stats
- Rate limiting or payment failure returns 402 if x402 payment is not processed
- Invalid query parameters return 400 with validation error

## 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 per-trap win rates, rail vs wide runner advantage metrics, pace profile classifications, and specific actionable betting angles for the requested greyhound track — giving a bettor statistically grounded guidance on which trap draws to favor or oppose.

## 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-analyzer-2d2a14d1/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)
