# AllInOneCents Weather API

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

Returns weather data for a given query string via a unified $0.01 micro-payment API endpoint.

## Facts

- Endpoint: POST https://allin-onecents.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/allinonecents-weather-api-d3a6428d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YwVy1EMTPqy0uDVLDazn1

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 allinonecents-weather-api-d3a6428d -d '<json body>'
```

Example prompt: What's the current weather in San Francisco? Just send the query 'San Francisco weather today' and get back the conditions.

## When to prefer this

Choose this endpoint when you need cheap ($0.01), low-friction weather lookups via a unified micro-payment API on Base or Solana without needing a subscription or API key. Useful for agents that need occasional weather data without committing to a traditional weather API provider.

## Known failure modes

- Payment not received — 402 response requiring USDC payment before data is returned
- Invalid or empty query string — may return success:false or empty data
- Unknown location or ambiguous query — data object may be empty or null
- Service unavailable — 5xx error if backend weather provider is down
- Rate limit or abuse detection — request blocked

## How this service works

Unified API platform — 60 endpoints across crypto, medical, macro, stocks, and utility. Dual-chain (Base + Solana). All $0.01.

## Output

Returns a JSON object with a 'success' boolean and a 'data' object containing weather information for the queried location or topic. The exact structure of the data object is loosely typed and may vary by query.

## Request schema (JSON Schema)

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

## 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/allinonecents-weather-api-d3a6428d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from allin-onecents.orbonomy.xyz](https://www.zero.xyz/host/allin-onecents.orbonomy.xyz/llms.txt)
