# ScrapFly Weather Crawl

> ScrapFly Weather Crawl is a paid API for AI agents from scrapifrivly.orbonomy.xyz, paid per call via x402, $0.09/call, status unknown (last checked 2026-09-14).

Fetches current weather data for a specified location via web scraping

## Facts

- Endpoint: POST https://scrapifrivly.orbonomy.xyz/api/crawl/weather
- Price: $0.09/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrapfly-weather-crawl-0090ccc5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Rp40GVDsgFysds2vFIFQ9

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-crawl-0090ccc5 -d '<json body>'
```

Example prompt: What is the current weather in San Francisco?

## When to prefer this

Use this endpoint when you need to fetch current weather data for any location without maintaining your own weather API keys, and when you are operating in an x402/Base chain payment environment. Suitable for one-off weather lookups per request.

## Known failure modes

- Invalid or unrecognized location string returns success:false or empty data
- Network or scraping errors may return success:false
- Ambiguous location names may return unexpected results
- Payment failure on Base chain results in 402 response

## 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 weather information for the specified location, scraped from the web.

## 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-crawl-0090ccc5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scrapifrivly.orbonomy.xyz](https://www.zero.xyz/host/scrapifrivly.orbonomy.xyz/llms.txt)
