# ScrapFly Weather Lookup

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

Retrieves current weather data for a specified location via a web scraping-backed weather endpoint

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/crawl/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/scrapfly-weather-lookup-52077a62
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Wb86TppYM4akrwBDN9t9L

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 scrapfly-weather-lookup-52077a62 -d '<json body>'
```

Example prompt: What's the current weather in Tokyo? Use the ScrapFly weather endpoint to look it up.

## When to prefer this

Use this endpoint when you need quick, pay-per-request weather data for any global location without managing API keys or subscriptions, and you are operating in an x402-compatible payment environment on Base chain. Suitable for one-off weather lookups by city or region name.

## Known failure modes

- Location not recognized or ambiguous — returns success: false with no data
- Payment not processed via x402 — 402 Payment Required response
- Invalid or missing location field — schema validation error
- Scraping target unavailable — upstream data source unreachable
- Network timeout or rate limiting from the underlying data source

## How this service works

69 endpoints for data, content generation, and web scraping. Pay per request via x402 on Base chain.

## Output

Returns a JSON object with a success boolean and a data object containing scraped weather information for the requested location, such as temperature, conditions, and related meteorological details.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

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

## More

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