# x402 Ski Resort Weather API

> x402 Ski Resort Weather API is a paid API for AI agents from x402-weather.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Retrieves weather and snow conditions data for a specific ski resort, paid via x402 micropayments

## Facts

- Endpoint: POST https://x402-weather.vercel.app/api/ski-resort/%7Bpath%7D
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-ski-resort-weather-api-f7513307
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VCVWY-UmBWFB2PzS8k6Wv

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 x402-ski-resort-weather-api-f7513307 -d '<json body>'
```

Example prompt: What are the current snow and weather conditions at Vail ski resort in Colorado?

## When to prefer this

Choose this endpoint when you need current ski resort weather or snow conditions for a named mountain or resort, especially when integrating micropayment-based API access via x402. Prefer over generic weather APIs when ski-specific data (snow depth, powder reports, lift conditions) is needed rather than general meteorological data.

## Known failure modes

- Unknown or misspelled resort name returns empty or error response
- Invalid resort ID returns 404 or null data
- Payment failure via x402 returns 402 status before data is delivered
- RapidAPI upstream outage results in 500 or timeout
- Missing required 'query' field returns validation error

## How this service works

21 paid weather API endpoints powered by x402 micropayments

## Output

Returns a data object containing weather and snow conditions for the requested ski resort, sourced from the underlying RapidAPI provider. This may include current temperature, snowfall amounts, snow depth, visibility, wind conditions, and resort-specific data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "query": {
   "type": "string",
   "description": "Ski resort name or ID"
  },
  "location": {
   "type": "string",
   "description": "Resort location"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object",
   "description": "Response data from the underlying RapidAPI provider"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-ski-resort-weather-api-f7513307/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-weather.vercel.app](https://www.zero.xyz/host/x402-weather.vercel.app/llms.txt)
