# BizIntel API – Weather Forecast

> BizIntel API – Weather Forecast is a paid API for AI agents from bizintel-api.hahavoid0.workers.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns a daily weather forecast (max temperature) for a given latitude/longitude coordinate pair

## Facts

- Endpoint: POST https://bizintel-api.hahavoid0.workers.dev/geography/weather-forecast
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bizintel-api-weather-forecast-effc2dae
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qqOpYMseWjLGfQT0Oa6sT

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 bizintel-api-weather-forecast-effc2dae -d '<json body>'
```

Example prompt: What's the daily high temperature forecast for the coordinates 40.7128 latitude and -74.0060 longitude?

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call weather forecast tied to precise GPS coordinates without needing an API key or subscription. It is ideal for AI agents that occasionally need weather data as part of a broader workflow (e.g. logistics, field operations, event planning) and prefer micropayment access over managing API credentials. Prefer alternatives if you need hourly granularity, precipitation data, multi-week forecasts, or historical weather data.

## Known failure modes

- Missing or invalid latitude/longitude returns a validation error
- Coordinates outside supported geographic coverage may return supported:false
- Malformed request body (wrong bodyType or missing required fields) returns a schema error
- Payment failure via x402 prevents the call from being processed
- Coordinates in remote regions may return lower confidence ratings

## How this service works

Fetches 7-day temperature and precipitation forecast charts from Open-Meteo.

## Output

A JSON object containing daily forecast data with an array of dates and corresponding maximum temperatures at 2 meters above ground, along with a confidence rating (e.g. 'high'), the data freshness date, a warnings array, a 'supported' boolean, and a disclaimer noting the data is informational only.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "latitude",
      "longitude"
     ],
     "properties": {
      "latitude": {
       "type": "number",
       "description": "Latitude"
      },
      "longitude": {
       "type": "number",
       "description": "Longitude"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "daily": {
    "time": [
     "2026-06-25"
    ],
    "temperature_2m_max": [
     22
    ]
   }
  },
  "warnings": [],
  "supported": true,
  "confidence": "high",
  "data_as_of": "2026-06",
  "disclaimer": "Informational support only. Not legal, tax, medical, veterinary, or financial advice. Verify with the cited official source or a qualified professional before acting."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bizintel-api-weather-forecast-effc2dae/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bizintel-api.hahavoid0.workers.dev](https://www.zero.xyz/host/bizintel-api.hahavoid0.workers.dev/llms.txt)
