# RacingPulse Historical Race Trends

> RacingPulse Historical Race Trends 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 historical draw bias, trainer records, and value betting angles for horse racing.

## Facts

- Endpoint: GET https://racingpulse.theaslangroupllc.com/api/trends
- 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-historical-race-trends-bf1261ff
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DCEu5ekhuUioM9eb2BHgb

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-historical-race-trends-bf1261ff
```

Example prompt: Pull up the draw bias and trainer records for Ascot's 6-furlong sprint on the straight course — I want to find any value angles for this Saturday's handicap.

## When to prefer this

Use this endpoint when you need historical context — draw bias, trainer course records, or statistical value angles — for horse racing, as opposed to real-time going conditions, live speed ratings, or form analysis for individual horses.

## Known failure modes

- Unknown or unsupported racecourse returns 404 or empty result
- Invalid date range yields no historical data
- Rate limiting or payment failure returns 402 or 429
- Sparse historical data for minor tracks may return low-confidence trends
- Missing required parameters returns 400 bad request

## How this service works

Historical race trends — draw bias, trainer records and value angles. For horse-racing betting agents.

## Output

Returns structured historical data including draw/stall bias win rates, trainer performance statistics at the queried course and distance, and identified value angles or trends useful for 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": {
      "race": {
       "type": "string",
       "description": "race or meeting name (e.g. \"Cheltenham Gold Cup\", \"Royal Ascot\")"
      }
     }
    }
   },
   "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": {
  "trends": [
   {
    "stat": "8yo horses win 40% of Gold Cups",
    "angle": "Age profile",
    "years": "2000-2025",
    "confidence": "high"
   }
  ],
  "draw_bias": {
   "summary": "No draw bias at Cheltenham (undulating course)",
   "optimal_stalls": "N/A"
  },
  "age_trends": "7-9yo optimal",
  "fade_angles": [
   "Short-priced favourites below 3/1 lose 65%"
  ],
  "going_trends": "Soft ground increases stamina requirement significantly",
  "news_context": "",
  "value_angles": [
   "Novice hurdlers promoted to chase"
  ],
  "distance_bias": "3m2f — true test of stamina",
  "trainer_trends": [
   {
    "record": "6 wins from 18 runners",
    "trainer": "W. Mullins"
   }
  ],
  "race_or_meeting": "Cheltenham Gold Cup",
  "weight_carried_trends": "11-11 stone ideal"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/racingpulse-historical-race-trends-bf1261ff/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)
