# DataVault Weather Lookup

> DataVault Weather Lookup is a paid API for AI agents from zetdatavault.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Returns current weather data for a given city or geographic coordinate pair

## Facts

- Endpoint: POST https://zetdatavault.vercel.app/api/weather
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/datavault-weather-lookup-e5468518
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_n9Ed9kNVzyQb4lRCXRl_A

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 datavault-weather-lookup-e5468518 -d '<json body>'
```

Example prompt: What's the current weather in Austin, Texas right now? Use coordinates 30.2672, -97.7431 if that helps.

## When to prefer this

Use this endpoint when you need live weather data for a specific city or coordinate and want a pay-per-call model with no subscription commitment. Prefer this over subscription weather APIs for low-frequency or ad-hoc queries billed in USDC on Base.

## Known failure modes

- City name not recognized or ambiguous — returns error or empty data
- Invalid latitude/longitude values — may return error response
- External weather data provider unavailable — success false with empty data
- Missing all location inputs — request rejected
- Rate limiting or payment failure — 402 response

## How this service works

54 endpoints spanning local tools, live data feeds, and AI-powered text processing. Pay-per-call with USDC on Base.

## Output

Returns a JSON object with a success boolean and a data object containing current weather conditions for the specified city or coordinates, such as temperature, humidity, and weather description.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "city": {
   "type": "string"
  },
  "latitude": {
   "type": "number"
  },
  "longitude": {
   "type": "number"
  }
 }
}
```

## 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/datavault-weather-lookup-e5468518/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from zetdatavault.vercel.app](https://www.zero.xyz/host/zetdatavault.vercel.app/llms.txt)
