# x402-farm Meteo Weather API

> x402-farm Meteo Weather API is a paid API for AI agents from x402-farm.vercel.app, paid per call via x402, $0.005/call, status down (last checked 2026-09-04).

Returns current weather conditions and a multi-day temperature forecast for a location, payable per-call via x402/USDC.

## Facts

- Endpoint: GET https://x402-farm.vercel.app/v1/fr/meteo
- Price: $0.005/call
- Payment: x402
- Status: down
- Last checked: 2026-09-04
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-farm-meteo-weather-api-56d0cf57
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NkpHGPdrmpxDsg6EvVdMX

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 x402-farm-meteo-weather-api-56d0cf57
```

Example prompt: What's the current weather and the forecast for the next few days — give me the temperature and sky conditions?

## When to prefer this

Choose this endpoint when you need a lightweight, no-account weather lookup payable per-call via the x402 micropayment protocol on Base/USDC. Ideal for AI agents that need weather data on demand without managing API subscriptions or API keys.

## Known failure modes

- Payment not included or rejected — returns HTTP 402 requiring x402 USDC payment on Base
- Invalid or missing query parameters — may return 400 or empty/unexpected response
- Location not specified or unresolvable — may return null or error data
- Service temporarily unavailable — 500 or timeout

## How this service works

Pay-per-call APIs for AI agents — x402 protocol, USDC on Base, no account needed.

## Output

A JSON object containing the current conditions (sky description and temperature in Celsius) and an array of daily forecasts with date and maximum temperature (tmax).

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "actuel": {
   "description": "Principalement clair",
   "temperature": 30.7
  },
  "previsions": [
   {
    "date": "2026-07-22",
    "tmax": 31
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-farm-meteo-weather-api-56d0cf57/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-farm.vercel.app](https://www.zero.xyz/host/x402-farm.vercel.app/llms.txt)
