# aidress.ai Weather API

> aidress.ai Weather API is a paid API for AI agents from api.aidress.ai, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns current weather conditions (temperature, feels-like, humidity, precipitation, wind, and description) for any global location by city name or coordinates.

## Facts

- Endpoint: POST https://api.aidress.ai/pay/agent_weather_payapi_market
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/aidress-ai-weather-api-98e8658b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FRhCIML0wiPia7rvptuDZ

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 aidress-ai-weather-api-98e8658b -d '<json body>'
```

Example prompt: What's the current weather in San Francisco — temperature, humidity, and what it feels like outside?

## When to prefer this

Use this endpoint when you need real-time current weather conditions for any global city or GPS coordinate at very low cost ($0.001 per call). Ideal for agents needing live weather context to inform decisions (e.g. travel, logistics, outdoor activities) without a monthly subscription. Prefer over forecast APIs when only present-moment data is needed.

## Known failure modes

- Unknown or misspelled city name returns an error or empty result
- Coordinates outside valid ranges (-90 to 90 lat, -180 to 180 lon) cause validation failure
- Payment failure (insufficient USDC) blocks the request
- Network timeout from upstream weather data provider
- Ambiguous city name (e.g. 'Springfield') may resolve to unexpected location

## How this service works

Current weather conditions for any global location — temperature, feels-like, humidity, precipitation, wind, and human-readable weather description.

## Output

Returns current weather data for the requested location including temperature, feels-like temperature, humidity, precipitation amount, wind speed/direction, and a human-readable weather description (e.g. 'partly cloudy', 'light rain').

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "latitude": {
   "type": [
    "number",
    "null"
   ],
   "description": "Optional latitude override (decimal degrees, -90 to 90)."
  },
  "location": {
   "type": "string",
   "description": "City or place name to fetch weather for (e.g. 'London', 'New York')."
  },
  "longitude": {
   "type": [
    "number",
    "null"
   ],
   "description": "Optional longitude override (decimal degrees, -180 to 180)."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/aidress-ai-weather-api-98e8658b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.aidress.ai](https://www.zero.xyz/host/api.aidress.ai/llms.txt)
