# AllInOneCents Weather API

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

Returns weather data for a given query via a unified low-cost API platform at $0.01 per call

## Facts

- Endpoint: POST https://allinonecents.orbonomy.xyz/api/weather
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/allinonecents-weather-api-53b6ebf9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GuP12Lt8ufoHeilbHH9GF

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-53b6ebf9 -d '<json body>'
```

Example prompt: What's the current weather in San Francisco? Just send a query for 'current weather San Francisco' and return the conditions and temperature.

## When to prefer this

Choose this endpoint when you need cheap, simple weather lookups at $0.01 per call and don't require a dedicated weather API with structured schema guarantees. Best for lightweight or high-volume weather queries where cost matters more than rich structured output.

## Known failure modes

- Missing or empty query field returns error
- Ambiguous location string may return unexpected results
- Upstream weather data provider unavailable returns failure
- Invalid query format may return empty data object
- Payment not accepted or x402 flow fails preventing response

## How this service works

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

## Output

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

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