ToolAssay

Global weather forecast for latitude and longitude

Global weather forecast for latitude and longitude. Returns the forecast valid now, all available hourly forecast points, and the extended forecast in native 6-hour periods without inventing hourly precision. Data source: MET Norway Locationforecast 2.0.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
124 msmedian answer time
$0.001listed price per call
$0.001price it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

GET https://wallet-services-poc-clean-mainnet.3hz-services.workers.dev/weather

CategoryMarket data
Provider hostwallet-services-poc-clean-mainnet.3hz-services.workers.dev
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days1 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.001 124 ms

Example input (from the provider)

{
  "method": "GET",
  "queryParams": {
    "lat": 0,
    "lon": 0
  },
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "additionalProperties": false,
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "method": {
          "enum": [
            "GET"
          ],
          "type": "string"
        },
        "queryParams": {
          "additionalProperties": false,
          "properties": {
            "lat": {
              "description": "Latitude in decimal degrees",
              "maximum": 90,
              "minimum": -90,
              "type": "number"
            },
            "lon": {
              "description": "Longitude in decimal degrees",
              "maximum": 180,
              "minimum": -180,
              "type": "number"
            }
          },
          "required": [
            "lat",
            "lon"
          ],
          "type": "object"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "queryParams"
      ],
      "type": "object"
    },
    "output": {
      "additionalProperties": false,
      "properties": {
        "example": {
          "properties": {
            "current_forecast": {
              "type": "object"
            },
            "fetched_at": {
              "type": "string"
            },
            "forecast_horizon": {
              "type": "object"
            },
            "hourly_forecast": {
              "type": "array"
            },
            "location": {
              "type": "object"
            },
            "six_hour_periods": {
              "type": "array"
            },
            "source": {
              "type": "object"
            },
            "source_updated_at": {
              "type": [
                "string",
                "null"
              ]
            }
          },
          "required": [
            "location",
            "current_forecast",
            "hourly_forecast",
            "six_hour_periods",
            "forecast_horizon",
            "source",
            "source_updated_at",
            "fetched_at"
          ],
          "type": "object"
        },
        "type": {
          "const": "json",
          "type": "string"
        }
      },
      "required": [
        "type",
        "example"
      ],
      "type": "object"
    }
  },
  "required": [
    "input",
    "output"
  ],
  "type": "object"
}

This page as JSON