# India Data Gateway — 7-Day Weather Forecast

> India Data Gateway — 7-Day Weather Forecast is a paid API for AI agents from gateway.hillguava.xyz, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns a 7-day weather forecast for a specified Indian city, covering 400+ cities.

## Facts

- Endpoint: GET https://gateway.hillguava.xyz/weather/forecast/:city
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/india-data-gateway-7-day-weather-forecast-b11e8303
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mz6QeNdqE-4w9jaK8hvBc

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 india-data-gateway-7-day-weather-forecast-b11e8303
```

Example prompt: What's the 7-day weather forecast for Mumbai? I need to see the full week ahead.

## When to prefer this

Use this endpoint when you need a week-ahead weather forecast specifically for an Indian city. It supports 400+ Indian cities and is pay-per-call via x402, making it cost-effective for occasional lookups. Prefer this over global weather APIs when Indian city coverage and low per-call cost matter.

## Known failure modes

- City slug not recognized — use /cities endpoint to find valid slugs
- City name formatted incorrectly — must be lowercase slug (e.g. 'mumbai', 'new-delhi')
- City not in supported 400+ city list — returns 404 or error
- Payment failure via x402 protocol — returns 402 Payment Required
- Rate limiting or gateway errors — returns 5xx

## How this service works

7-day weather forecast for an Indian city. 400+ cities supported.

## Output

A 7-day weather forecast for the specified Indian city, including daily conditions such as temperature, precipitation likelihood, and general weather outlook.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "city"
     ],
     "properties": {
      "city": {
       "type": "string",
       "description": "Lowercase city slug, e.g. mumbai or delhi. See /cities for the full list."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/india-data-gateway-7-day-weather-forecast-b11e8303/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from gateway.hillguava.xyz](https://www.zero.xyz/host/gateway.hillguava.xyz/llms.txt)
