# Settle On Base — Weather Data

> Settle On Base — Weather Data is a paid API for AI agents from api.settleonbase.xyz, paid per call via x402, $100/call, status unknown (last checked 2026-09-15).

Returns current weather conditions including temperature, humidity, and a conditions description

## Facts

- Endpoint: GET https://api.settleonbase.xyz/api/settle100
- Price: $100/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/settle-on-base-weather-data-2e402778
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rPZgdXmxHoAdIjAwTO2AM

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 settle-on-base-weather-data-2e402778
```

Example prompt: What are the current weather conditions — temperature, humidity, and overall conditions description?

## When to prefer this

Use this endpoint when you need a quick weather lookup and the response schema (temperature, humidity, conditions) covers your needs and you are operating on the Base blockchain payment network via x402 protocol. Note: at $100 USDC per call this is extremely expensive relative to conventional weather APIs; prefer only if x402/Base payment rails are specifically required.

## Known failure modes

- Payment not received or insufficient — 402 response blocking access
- Endpoint unavailable or server error — 5xx response
- Malformed or empty response body if upstream weather source is unavailable

## How this service works

weather

## Output

A JSON object with three fields: temperature (number), humidity (number), and conditions (string describing weather state such as 'sunny' or 'rainy').

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "humidity": {
   "type": "number"
  },
  "conditions": {
   "type": "string"
  },
  "temperature": {
   "type": "number"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/settle-on-base-weather-data-2e402778/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.settleonbase.xyz](https://www.zero.xyz/host/api.settleonbase.xyz/llms.txt)
