# BizIntel API – Geography Weather

> BizIntel API – Geography Weather 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 current weather conditions (temperature and wind speed) for a given location via a pay-per-call POST endpoint.

## Facts

- Endpoint: POST https://bizintel-api.hahavoid0.workers.dev/geography/weather
- 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-geography-weather-d6eb727d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9s-jQ4dLAvTBb9RHIkhxk

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-geography-weather-d6eb727d -d '<json body>'
```

Example prompt: What's the current temperature and wind speed in Berlin right now?

## When to prefer this

Use this endpoint when you need a quick, pay-per-call weather lookup without an API key, especially within a workflow already using BizIntel's other business intelligence tools (corporate registries, barcodes, crypto prices). Ideal for lightweight weather enrichment of B2B or geolocation data pipelines paying per-query in USDC via x402.

## Known failure modes

- Unsupported or unrecognized location returns supported:false
- Low-confidence results may include warnings array with caveats
- Payment failure (insufficient USDC) blocks the call
- Malformed POST body may return 400-level error
- Data may lag real-time conditions as indicated by data_as_of field

## How this service works

Queries current temperature, wind speed, and weather codes from the public Open-Meteo API.

## Output

A JSON object containing current windspeed (numeric, likely km/h or mph), temperature (numeric, likely Celsius), a supported flag, a confidence level (e.g. 'high'), a data_as_of timestamp, any warnings, and a disclaimer that 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 coordinate"
      },
      "longitude": {
       "type": "number",
       "description": "Longitude coordinate"
      }
     }
    },
    "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": {
   "windspeed": 12,
   "temperature": 18.5
  },
  "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-geography-weather-d6eb727d/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)
