# Hk Weather Get current weather in Hong Kong, including temperature, relative humidity, and wind speed, from Open-Meteo. This is a paid API service exposed by Server402 for AI agents, MCP clients, OpenAPI importers, and applications. Call the endpoint once without payment to receive HTTP 402 payment instructions, complete payment, then retry with the returned payment token or x402 signature. ## Invocation - Service ID: `hk-weather` - Canonical service ID: `hk-weather` - Method: `GET` - Endpoint: `https://x402vip.com/api/tools/hk-weather` - Service page: https://x402vip.com/services/hk-weather - OpenAPI: https://x402vip.com/openapi.json - Catalog search: https://x402vip.com/api/catalog/search?q=hk-weather - MCP endpoint: https://x402vip.com/mcp - MCP tool: `hk_weather` ## Pricing And Payment - Price: USD 0.05 - Billing mode: `per_call` - Max calls per payment: `1` - Payment provider: `x402_facilitator` - Payment flow: call without payment, receive `402 Payment Required`, pay, then retry with `X-Payment-Token` or `PAYMENT-SIGNATURE`. - Payment hint: Call GET /api/tools/hk-weather once to receive HTTP 402 with accepts[] requirements, or create a payment with POST /api/payments using serviceId="hk-weather". Pay Base USDC with PAYMENT-SIGNATURE or pay XIAO with X402-Guarantee, then retry the same request. ## Use Cases - Check current weather - Answer weather questions about Hong Kong - Get simple weather data for testing ## Keywords weather, current weather, Hong Kong weather, temperature, humidity, wind speed ## Input Schema ```json { "properties": {}, "type": "object" } ``` ## Output Schema ```json { "properties": { "current": { "type": "object" }, "timezone": { "type": "string" } }, "type": "object" } ``` ## Example Request ```json null ``` ## Example Response ```json { "current": { "relative_humidity_2m": 72, "temperature_2m": 30.4, "time": "2026-05-28T16:15", "wind_speed_10m": 11.9 }, "timezone": "Asia/Hong_Kong" } ```