# Crawl Weather Lookup

> Crawl Weather Lookup is a paid API for AI agents from crawl.orbonomy.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns current weather data for a given location name via a pay-per-request API using x402/USDC micropayments

## Facts

- Endpoint: POST https://crawl.orbonomy.xyz/api/weather
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crawl-weather-lookup-4823b54f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uQWqGEm2QVtGS3u6-g1ob

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 crawl-weather-lookup-4823b54f -d '<json body>'
```

Example prompt: What's the current weather in Berlin? Use the Crawl weather endpoint and pay the $0.01 USDC fee per request.

## When to prefer this

Use this endpoint when you need weather data for a named location without requiring API keys, subscriptions, or OAuth setup, and your agent is able to make x402 USDC micropayments. It is ideal for lightweight, one-off weather lookups in agentic workflows where pay-per-use economics are preferred over subscription plans.

## Known failure modes

- Location not recognized or ambiguous — may return success:false or empty data
- Payment failure if USDC balance is insufficient for the x402 micropayment
- Network timeout or service unavailability from the crawl.orbonomy.xyz host
- Malformed request if 'location' field is missing — required field validation error

## How this service works

Web scraping and search for AI agents. No auth, no subscriptions. Pay per request in USDC via x402.

## Output

A JSON object with a 'success' boolean and a 'data' object containing weather information for the requested location. The exact structure of the weather data is unspecified beyond these top-level fields.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "location"
 ],
 "properties": {
  "location": {
   "type": "string",
   "description": "Location name"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/crawl-weather-lookup-4823b54f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from crawl.orbonomy.xyz](https://www.zero.xyz/host/crawl.orbonomy.xyz/llms.txt)
