ToolAssay

Weather forecast for a location (global, keyless)

Weather forecast for a location (global, keyless): current conditions, an hourly series (up to 48h) and a daily summary (up to 10 days: min/max temp + condition), from met.no. Pass lat+lon, or a place name. For travel, logistics, events, energy. No API key.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
967 msmedian answer time
$0.002listed price per call
$0.002price 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://weather.cyberwarex.com/forecast

CategoryEverything else
Provider hostweather.cyberwarex.com
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days20 from 4 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.002 967 ms

Example input (from the provider)

{
  "method": "GET",
  "queryParams": {
    "days": 5,
    "place": "London"
  },
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "method": {
          "enum": [
            "GET",
            "HEAD",
            "DELETE"
          ],
          "type": "string"
        },
        "queryParams": {
          "additionalProperties": false,
          "properties": {
            "days": {
              "default": 7,
              "maximum": 10,
              "minimum": 1,
              "type": "integer"
            },
            "hours": {
              "default": 24,
              "maximum": 48,
              "minimum": 1,
              "type": "integer"
            },
            "lat": {
              "type": "number"
            },
            "lon": {
              "type": "number"
            },
            "place": {
              "description": "City/place name (geocoded) if lat/lon not given.",
              "type": "string"
            }
          },
          "type": "object"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "properties": {
            "current": {
              "type": "object"
            },
            "daily": {
              "type": "array"
            },
            "hourly": {
              "type": "array"
            },
            "location": {
              "type": "object"
            },
            "source": {
              "type": "string"
            }
          },
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON