# 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://aivps.lat/api/tools/hk-weather` - Service page: https://aivps.lat/services/hk-weather - OpenAPI: https://aivps.lat/openapi.json - Catalog search: https://aivps.lat/api/catalog/search?q=hk-weather - MCP endpoint: https://aivps.lat/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: Create a payment with POST /api/payments using serviceId="hk-weather", then pass the returned token in X-Payment-Token or MCP paymentToken. ## 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" } ```