Skip to content
Eden Engine

Current Conditions for a Personal Weather Station (PWS)

omnial/get-current-weather

Given a PWS (personal weather station) id and a unit system, returns that station's most recent observation: temperature, humidity, wind speed and direction, barometric pressure, precipitation rate and total, solar radiation, UV index, and the station's registered coordinates. A station id that does not resolve to any known station returns an empty result rather than an error (see examples/invalid-station-error.json).

activeper callv1
Provider
Web & Business Data Network
Category
weather
Provider price
$0.01365 per call
Latency p50 / p95
— / —
Success rate
Verified

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "required": [
    "station_id"
  ],
  "properties": {
    "units": {
      "type": "string",
      "description": "Unit system: 'm' for metric, 'e' for english/imperial."
    },
    "station_id": {
      "type": "string",
      "description": "PWS Station ID (e.g. ILONDO440). Obtain from search endpoint's pwsId field."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "uv": {
          "type": "number"
        },
        "lat": {
          "type": "number",
          "description": "The station's registered latitude -- see verification.notes on why this is safe to ship."
        },
        "lon": {
          "type": "number",
          "description": "The station's registered longitude -- see verification.notes on why this is safe to ship."
        },
        "temp": {
          "type": [
            "number",
            "null"
          ],
          "description": "Degrees, unit per the request's `units` param. Observed null on the one real call."
        },
        "time": {
          "type": "string",
          "description": "Observation timestamp, e.g. '2026-09-07 00:54:28'. A capture-time PII heuristic flagged this leaf as a possible phone number; it is a timestamp string, confirmed against the real fixture value, not a phone number."
        },
        "humidity": {
          "type": [
            "number",
            "null"
          ],
          "description": "Percent. Observed null on the one real call."
        },
        "pressure": {
          "type": "number"
        },
        "wind_dir": {
          "type": "string",
          "description": "Compass direction, e.g. 'SSW'."
        },
        "station_id": {
          "type": "string",
          "description": "Echoes the input station_id."
        },
        "wind_speed": {
          "type": "number"
        },
        "precip_rate": {
          "type": "number"
        },
        "precip_total": {
          "type": "number"
        },
        "solar_radiation": {
          "type": "number"
        }
      },
      "description": "Absent entirely on a station id that does not resolve (see examples/invalid-station-error.json, where the shaped result is `{}`).",
      "additionalProperties": true
    },
    "status": {
      "type": "string",
      "description": "'success' on the one populated call observed."
    }
  },
  "description": "The weather record, as returned at routing.responseResultPath ($.output).",
  "additionalProperties": true
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.01365
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 8, 2026