# Construction Delay Risk Index

> Construction Delay Risk Index is a paid API for AI agents from store.cryptotradecalc.com, paid per call via x402, $0.012/call, status unknown (last checked 2026-09-15).

Combines wind, rain, and frost weather forecasts into a single delay-risk score for outdoor construction works in a given city.

## Facts

- Endpoint: GET https://store.cryptotradecalc.com/api/construction-delay
- Price: $0.012/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/construction-delay-risk-index-491704f4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_d-yJDENeMhhdanGcxkEaX

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 construction-delay-risk-index-491704f4
```

Example prompt: What's the construction delay risk score for outdoor works in Chicago today — I need to know if wind, rain, or frost could hold up the project?

## When to prefer this

Use this endpoint when you need a single combined weather-based risk score specifically for outdoor construction delay assessment, combining wind, rain, and frost into one actionable index — rather than fetching raw weather data and computing risk yourself.

## Known failure modes

- Missing or invalid city name returns an error or empty result
- City not found in geocoding database returns 404 or error response
- Upstream weather data unavailable causes service failure
- Non-string city parameter causes schema validation error

## How this service works

construction-delay-risk: Construction Delay Risk Index – combines wind, rain, and frost forecasts into a single delay-score for outdoor works.

## Output

Returns a composite delay-risk score for outdoor construction, derived from combined wind, rain, and frost weather forecasts for the queried city, helping project managers assess whether weather conditions are likely to cause delays.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "city": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/construction-delay-risk-index-491704f4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from store.cryptotradecalc.com](https://www.zero.xyz/host/store.cryptotradecalc.com/llms.txt)
