# Strale Weather Lookup

> Strale Weather Lookup is a paid API for AI agents from api.strale.io, paid per call via x402, $0.054/call, status unknown (last checked 2026-09-15).

Returns current weather conditions for a given city or geographic coordinates, with a cryptographic audit record on every response.

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/weather-lookup
- Price: $0.054/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-weather-lookup-3b6cd5f7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3_yuBAOiHoktDrjQiwZnY

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 strale-weather-lookup-3b6cd5f7
```

Example prompt: What is the current weather in Berlin right now? I need the conditions and temperature.

## When to prefer this

Choose this endpoint when you need weather data paired with a cryptographic audit trail — ideal for compliance-sensitive or AI agent workflows where verifiability matters. Useful when city name or coordinates are available and you want a single trusted REST call rather than integrating a raw weather provider directly. Particularly suited for x402 micropayment flows.

## Known failure modes

- Missing city and coordinates — at least one location parameter required
- Invalid latitude/longitude values out of valid geographic range
- Unrecognized or misspelled city name returns no results or error
- Network or upstream weather provider outage
- Payment failure or insufficient USDC balance blocks the request
- Rate limiting if too many requests in a short window

## How this service works

The trust layer for AI agents — 250+ independently tested data capabilities across 27 countries. Execute capabilities via REST, MCP, A2A, or x402 micropayments. Every call returns an audit record with cryptographic chain hashing.

## Output

Returns current weather data (conditions, temperature, and related meteorological fields) for the requested city or coordinates, along with a cryptographic audit record including a chain hash for traceability and trust verification.

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-weather-lookup-3b6cd5f7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
