# Interzoid Global Weather API

> Interzoid Global Weather API is a paid API for AI agents from api.interzoid.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns current weather conditions including temperature and wind speed for any city worldwide

## Facts

- Endpoint: GET https://api.interzoid.com/getglobalweather
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/interzoid-global-weather-api-e4c13968
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VRqU3lKWEsQ7wYSiVjaNf

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 interzoid-global-weather-api-e4c13968
```

Example prompt: What's the current weather in London, UK — give me the temperature in both Fahrenheit and Celsius along with wind speed and conditions?

## When to prefer this

Use this endpoint when you need current real-time weather data for a specific city anywhere in the world, and you want both Celsius and Fahrenheit returned in a single call. Ideal for agents needing weather context without managing complex weather API authentication. Priced at $0.01 USDC per call via x402, making it suitable for on-demand, per-query use cases.

## Known failure modes

- Unknown or misspelled city name returns an error code in the Code field
- Missing required 'location' query parameter returns a 400 or error response
- City name ambiguity (no country specified) may return results for the wrong city
- API quota exhausted returns a non-success Code
- Network timeout returns no response

## How this service works

Get current weather information for any city worldwide including temperature, conditions, humidity, wind, and atmospheric data.

## Output

Returns a JSON object with the city name, weather condition description (e.g. 'Clouds', 'Rain'), temperature in both Celsius and Fahrenheit, wind speed in MPH, a status code ('Success' or error), and a credits field.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "location": "London, UK"
  }
 }
}
```

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "location"
     ],
     "properties": {
      "location": {
       "type": "string",
       "description": "City name, optionally followed by country (e.g. \"London, UK\", \"Tokyo, Japan\")"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "City": "London",
  "Code": "Success",
  "TempC": "13.0",
  "TempF": "55.4",
  "Credits": "0",
  "Weather": "Clouds",
  "WindMPH": "12.5"
 }
}
```

## More

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