# VibeSprings Demo Delay-Risk Score

> VibeSprings Demo Delay-Risk Score is a paid API for AI agents from vibesprings.net, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns a weather-driven delay-risk score for one of 5 fixed US demo locations, previewing the full delay-risk API schema.

## Facts

- Endpoint: GET https://vibesprings.net/api/demo/delay-risk
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vibesprings-demo-delay-risk-score-cd2f5eaf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iYjwYjhGmQRoeMb4WCwGj

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 vibesprings-demo-delay-risk-score-cd2f5eaf
```

Example prompt: Can you pull the demo delay-risk score for Seattle using the 'outdoor_event' activity profile and 'loam' soil type, so I can see if the schema matches what I need before buying the full API?

## When to prefer this

Use this endpoint when you want to try the VibeSprings delay-risk scoring schema at low cost before committing to the full endpoint. Ideal for evaluating output structure, testing integrations, or checking risk scores for one of the 5 supported demo locations (Nova, Houston, Seattle, Denver, Miami). Not suitable when you need arbitrary US locations — use the full /api/delay-risk endpoint for that.

## Known failure modes

- Invalid location key (not one of: nova, houston, seattle, denver, miami) returns an error
- Invalid profile value (not one of: ground_work, outdoor_event, logistics, aerial) returns an error
- Invalid soil type value returns an error
- Payment of 0.002 USDC not provided results in 402 Payment Required

## How this service works

Demo: weather-driven delay-risk score for 5 fixed US locations. Same schema as the full /api/delay-risk endpoint. Try before you buy.

## Output

Returns a weather-driven delay-risk score for the selected demo location, structured using the same schema as the full /api/delay-risk endpoint. Includes activity-profile-specific risk indicators, optionally adjusted for soil type. Useful for evaluating the data structure and output quality before committing to paid calls.

## 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",
     "required": [],
     "properties": {
      "soil": {
       "type": "string",
       "description": "Soil type override: clay, sand, loam, silt, mixed"
      },
      "profile": {
       "type": "string",
       "description": "Activity profile: ground_work, outdoor_event, logistics, or aerial"
      },
      "location": {
       "type": "string",
       "description": "Demo location key: nova, houston, seattle, denver, or miami"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "note": "demo — fixed locations; full endpoint at /api/delay-risk",
  "success": true,
  "location": {
   "key": "nova",
   "lat": 38.85,
   "lon": -77.3,
   "name": "Northern Virginia (clay-silt, backyard)"
  },
  "algorithm": {
   "engine": "ilystics-v2.2.1",
   "scoring": "vibesprings-delay-risk-v1"
  },
  "windowBand": "moderate",
  "windowScore": 42
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vibesprings-demo-delay-risk-score-cd2f5eaf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vibesprings.net](https://www.zero.xyz/host/vibesprings.net/llms.txt)
