# 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, $10/call, status unknown (last checked 2026-09-14).

Returns current weather data including temperature, humidity, and conditions via a paid API endpoint on Base

## Facts

- Endpoint: GET https://api.settleonbase.xyz/api/settle10
- Price: $10/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/settle-on-base-weather-data-b6ea5be1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UfjvrsFw6OaHL9Q8CLtrn

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-b6ea5be1
```

Example prompt: What are the current temperature, humidity, and weather conditions right now?

## When to prefer this

Consider this endpoint if you specifically need weather data accessible via x402 micropayment protocol on Base and are already integrated with a Base/USDC payment flow. Note: the $10 USDC per call price is very high for a weather lookup and the endpoint shows low metadata quality signals — evaluate alternatives before use.

## Known failure modes

- Payment not provided or insufficient — HTTP 402 returned requiring $10 USDC payment on Base
- No location parameter supported — returns a single fixed weather reading with no geographic customization
- Endpoint may be non-functional given suspicious metadata overlap with sibling endpoints all returning identical descriptions

## How this service works

weather

## Output

Returns a JSON object with three fields: temperature (number), humidity (number), and conditions (string describing current weather state).

## 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-b6ea5be1/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)
