# compute.siliq.io Weather Snapshot

> compute.siliq.io Weather Snapshot is a paid API for AI agents from compute.siliq.io, paid per call via x402, $0.001/call, status down (last checked 2026-09-15).

Returns a real-time hyperlocal weather snapshot for Windward Oahu, Hawaii

## Facts

- Endpoint: POST https://compute.siliq.io/weather/snapshot
- Price: $0.001/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/compute-siliq-io-weather-snapshot-46c95724
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NzAOaOTqS2Oc6NIyThL2w

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 compute-siliq-io-weather-snapshot-46c95724 -d '<json body>'
```

Example prompt: What are the current weather conditions on the Windward side of Oahu right now?

## When to prefer this

When you specifically need hyperlocal, real-time weather data for the Windward side of Oahu, Hawaii, as opposed to a broad regional or national weather service. Ideal for applications scoped to the Kailua, Kaneohe, or Ko'olaupoko region where microclimatic accuracy matters.

## Known failure modes

- Payment not provided or invalid x402 credentials — returns 402 Payment Required
- Malformed POST body or missing required input fields — returns 400 Bad Request
- Weather data source temporarily unavailable — returns 503 or 500
- Network timeout reaching compute.siliq.io — connection error

## How this service works

Hyperlocal weather from Windward Oahu

## Output

A weather snapshot object containing current hyperlocal conditions for Windward Oahu — likely including temperature, humidity, wind, and sky conditions — returned as a JSON object.

## Example request

```json
{
 "input": {
  "body": {},
  "type": "http",
  "method": "POST",
  "bodyType": "json"
 }
}
```

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/compute-siliq-io-weather-snapshot-46c95724/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from compute.siliq.io](https://www.zero.xyz/host/compute.siliq.io/llms.txt)
