# X402 Hub Ski Resort API

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

Retrieves ski resort information and conditions based on a natural language query, accessed via x402 micropayment on Base

## Facts

- Endpoint: POST https://x402-hub.vercel.app/api/ski-resort
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-hub-ski-resort-api-76fc6192
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zBLlS7XgLs27y8KKGV0ab

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-hub-ski-resort-api-76fc6192 -d '<json body>'
```

Example prompt: What are the current snow conditions and open trails at Park City Mountain Resort?

## When to prefer this

Choose this endpoint when you need structured ski resort data (conditions, trails, lifts) and are operating in an x402-enabled micropayment context on Base. It is ideal for agents with USDC wallets that need on-demand resort lookups without a subscription. Prefer over scraping resort websites directly when you need clean structured data at low per-call cost.

## Known failure modes

- Payment not sent or insufficient USDC balance — returns 402 Payment Required
- Query string missing or empty — returns 400 Bad Request
- Resort not found or unrecognized query — returns empty or null data object
- Upstream ski resort data provider unavailable — returns 502 or partial data
- Network timeout from upstream API — returns 504 Gateway Timeout

## How this service works

63 paid API endpoints protected by x402 micropayments on Base

## Output

Returns a data object containing ski resort information such as snow conditions, open trails, lift status, resort details, and other relevant resort data matching the query

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "query": {
   "type": "string",
   "description": "Query parameter for the API"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object",
   "description": "Response data from upstream API"
  }
 }
}
```

## More

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