# RacingPulse Going Conditions API

> RacingPulse Going Conditions API is a paid API for AI agents from racingpulse.theaslangroupllc.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns live ground and going conditions for up to 35 global racecourses, enabling horse-racing betting agents to factor surface state into their wagering decisions.

## Facts

- Endpoint: GET https://racingpulse.theaslangroupllc.com/api/going
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/racingpulse-going-conditions-api-0382a021
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Sq8_rekKYKKK55wP2TK2l

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-going-conditions-api-0382a021
```

Example prompt: Before I place this bet, what's the current going at Cheltenham today — is it soft, good-to-soft, or firm?

## When to prefer this

Use this endpoint when a betting agent needs real-time, authoritative going/ground condition data for horse racing prior to race-day wagering decisions. Prefer this over generic weather APIs when you need the official racecourse going descriptor (e.g. Good-to-Firm) rather than raw meteorological data, and over the full race-meeting briefing endpoint when you only need ground conditions without odds or news overhead.

## Known failure modes

- Racecourse not in the 35-course coverage list — returns 404 or empty result
- Going data not yet published for today's card — returns stale or null condition
- Network timeout if the upstream racecourse data feed is delayed
- Invalid course identifier — returns 400 bad request
- Payment not processed — returns 402 Payment Required

## How this service works

Live ground and going conditions for 35 global racecourses. For horse-racing betting agents.

## Output

Returns the current official going condition label (e.g. Good, Good-to-Soft, Soft, Heavy, Firm) for each queried racecourse, along with last-updated timestamps and potentially a condition severity indicator, covering up to 35 global tracks.

## 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": {
      "track": {
       "type": "string",
       "description": "track name, or \"all\" for all tracks"
      }
     }
    }
   },
   "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": {
  "going": "Good to Firm",
  "track": "ascot (UK)",
  "data_basis": "observed_gauge",
  "rain_7d_mm": 5.3,
  "attribution": [
   "Weather data from MET Norway (met.no), used under CC BY 4.0.",
   "Observed rainfall from the UK Environment Agency real-time flood-monitoring API (environment.data.gov.uk), used under the Open Government Licence v3.0."
  ],
  "going_trend": "Drying — no significant rain forecast",
  "temperature_c": 18.2,
  "moisture_index": 18.5,
  "wind_speed_kmh": 12.4,
  "source_licences": [
   {
    "api": "https://api.met.no/weatherapi/locationforecast/2.0/",
    "source": "MET Norway (Norwegian Meteorological Institute)",
    "licence": "CC BY 4.0",
    "licence_url": "https://creativecommons.org/licenses/by/4.0/"
   },
   {
    "api": "https://environment.data.gov.uk/flood-monitoring/doc/rainfall",
    "source": "UK Environment Agency real-time flood-monitoring API",
    "licence": "Open Government Licence v3.0",
    "licence_url": "https://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/"
   }
  ],
  "forecast_next_3d": [
   {
    "date": "2026-07-13",
    "partial": true,
    "temperature_max_c": 21,
    "temperature_min_c": 12,
    "precipitation_sum_mm": 0.2
   }
  ],
  "going_confidence": "high",
  "antecedent_window": "Going is based on 5.3mm of OBSERVED rainfall over the last 7 days, measured at a real rain gauge through 2026-07-13 (no lag).",
  "going_description": "Fast ground, minimal cut — speed favoured",
  "antecedent_lag_days": 0,
  "antecedent_covers_through": "2026-07-13"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/racingpulse-going-conditions-api-0382a021/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)
