# RacingPulse Horse Form Analysis

> RacingPulse Horse Form Analysis 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-14).

Returns deep horse form analysis including performance ratings and trainer statistics for handicapping a specific horse or race

## Facts

- Endpoint: GET https://racingpulse.theaslangroupllc.com/api/form
- Price: $0.07/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/racingpulse-horse-form-analysis-5f2c84af
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__gXYFZ1sU5jruak9qH41I

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-horse-form-analysis-5f2c84af
```

Example prompt: Pull up the deep form analysis for Crimson Tide running at Cheltenham tomorrow — I need the ratings, recent run figures, and trainer stats so I can make a handicapping call.

## When to prefer this

Use this endpoint when you need comprehensive horse-level form analysis for handicapping purposes, including trainer statistics and performance ratings. Prefer this over the speed ratings endpoint when you want a holistic form picture rather than just speed figures, and over the historical trends endpoint when you need horse-specific rather than course-level data. Best suited for pre-race handicapping workflows where a verdict or summary is needed alongside raw figures.

## Known failure modes

- Horse or race not found — returns 404 or empty result if the identifier is unknown
- Stale form data — ratings may not reflect the most recent race if data feed is delayed
- Missing trainer stats — trainer record may be unavailable for obscure or international trainers
- Payment failure — 402 response if x402 payment header is not provided or USDC balance is insufficient
- Invalid query parameters — 400 error if required fields like horse name or race ID are malformed

## How this service works

Deep horse-form analysis with ratings and trainer stats. For horse-racing handicapping agents.

## Output

Returns a structured form profile for the queried horse or race including recent run data, performance ratings (such as RPR or Timeform-style figures), going-adjusted ratings, trainer statistics (win rates, strike rates, form trends), and a handicapping verdict or summary to support 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": {
      "horse": {
       "type": "string",
       "description": "horse name (required)"
      },
      "trainer": {
       "type": "string",
       "description": "trainer name (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": {
  "horse": "Enable",
  "verdict": "Strong chance if ground stays fast",
  "concerns": [
   "Untested in heavy"
  ],
  "recent_runs": [
   {
    "date": "2026-05-15",
    "going": "Good",
    "notes": "Won easily by 3L",
    "track": "Newmarket",
    "distance": "1m2f",
    "position": "1st"
   }
  ],
  "form_summary": "3 wins from 4 starts on good ground",
  "jockey_stats": "F. Dettori — 3 wins this week",
  "trainer_form": "45% strike rate last 30 days",
  "key_strengths": [
   "Front-runner",
   "Handles fast ground"
  ],
  "speed_ratings": {
   "peak_rating": "120",
   "rating_trend": "Stable",
   "current_rating": "118"
  },
  "going_preferences": "Good to Firm preferred",
  "distance_preferences": "1m to 1m4f"
 }
}
```

## More

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