Skip to content
Eden Engine

7-Day Daily & 2-Day Hourly Weather Forecast (by Coordinates)

omnial/get-forecast

Given a latitude/longitude and a unit system, returns a multi-day daily forecast (high/low temperature, precipitation chance, sunrise/sunset and moonrise/moonset times, moon phase, and a day/night narrative breakdown for each day) plus an hourly forecast covering roughly the next two days (temperature, precipitation chance, wind, humidity, UV index, and visibility). Coordinates can be obtained from a location search tool.

activeper callv1
Provider
Web & Business Data Network
Category
weather
Provider price
$0.0273 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": [
    "lon",
    "lat"
  ],
  "properties": {
    "lat": {
      "type": "number",
      "description": "Latitude of the location."
    },
    "lon": {
      "type": "number",
      "description": "Longitude of the location."
    },
    "units": {
      "type": "string",
      "description": "Unit system: 'm' for metric, 'e' for english/imperial."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "daily": {
          "type": "object",
          "properties": {
            "qpf": {
              "type": "array",
              "items": {
                "type": "number"
              }
            },
            "qpfIce": {
              "type": "array",
              "items": {
                "type": "number"
              }
            },
            "daypart": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "qpf": {
                    "type": "array",
                    "items": {
                      "type": "number"
                    }
                  },
                  "qpfIce": {
                    "type": "array",
                    "items": {
                      "type": "number"
                    }
                  },
                  "qpfRain": {
                    "type": "array",
                    "items": {
                      "type": "number"
                    }
                  },
                  "qpfSnow": {
                    "type": "array",
                    "items": {
                      "type": "number"
                    }
                  },
                  "uvIndex": {
                    "type": "array",
                    "items": {
                      "type": "number"
                    }
                  },
                  "iconCode": {
                    "type": "array",
                    "items": {
                      "type": "number"
                    }
                  },
                  "narrative": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    }
                  },
                  "snowRange": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    },
                    "description": "Observed as an empty string on every entry in both real calls."
                  },
                  "windSpeed": {
                    "type": "array",
                    "items": {
                      "type": "number"
                    }
                  },
                  "cloudCover": {
                    "type": "array",
                    "items": {
                      "type": "number"
                    }
                  },
                  "dayOrNight": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    },
                    "description": "'D' or 'N'."
                  },
                  "precipType": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    }
                  },
                  "windPhrase": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    }
                  },
                  "daypartName": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    }
                  },
                  "temperature": {
                    "type": "array",
                    "items": {
                      "type": "number"
                    }
                  },
                  "precipChance": {
                    "type": "array",
                    "items": {
                      "type": "number"
                    }
                  },
                  "thunderIndex": {
                    "type": "array",
                    "items": {
                      "type": "number"
                    }
                  },
                  "wxPhraseLong": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    }
                  },
                  "qualifierCode": {
                    "type": "array",
                    "items": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "description": "Observed null on every entry in both real calls."
                  },
                  "uvDescription": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    }
                  },
                  "windDirection": {
                    "type": "array",
                    "items": {
                      "type": "number"
                    }
                  },
                  "wxPhraseShort": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    }
                  },
                  "iconCodeExtend": {
                    "type": "array",
                    "items": {
                      "type": "number"
                    }
                  },
                  "qualifierPhrase": {
                    "type": "array",
                    "items": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "description": "Observed null on every entry in both real calls."
                  },
                  "thunderCategory": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    }
                  },
                  "relativeHumidity": {
                    "type": "array",
                    "items": {
                      "type": "number"
                    }
                  },
                  "temperatureHeatIndex": {
                    "type": "array",
                    "items": {
                      "type": "number"
                    }
                  },
                  "temperatureWindChill": {
                    "type": "array",
                    "items": {
                      "type": "number"
                    }
                  },
                  "windDirectionCardinal": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    }
                  }
                },
                "additionalProperties": true
              },
              "description": "Both real calls returned exactly one object here, whose own properties are 16-element parallel arrays (one pair of day+night entries for each of the 8 daily entries above) -- a longer daypart array is unconfirmed."
            },
            "qpfRain": {
              "type": "array",
              "items": {
                "type": "number"
              }
            },
            "qpfSnow": {
              "type": "array",
              "items": {
                "type": "number"
              }
            },
            "dayOfWeek": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "moonPhase": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "narrative": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "moonPhaseDay": {
              "type": "array",
              "items": {
                "type": "number"
              }
            },
            "validTimeUtc": {
              "type": "array",
              "items": {
                "type": "number"
              }
            },
            "moonPhaseCode": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "sunsetTimeUtc": {
              "type": "array",
              "items": {
                "type": "number"
              }
            },
            "moonsetTimeUtc": {
              "type": "array",
              "items": {
                "type": [
                  "number",
                  "null"
                ]
              },
              "description": "Unix timestamp (seconds). Null paired with an empty local string."
            },
            "sunriseTimeUtc": {
              "type": "array",
              "items": {
                "type": "number"
              }
            },
            "temperatureMax": {
              "type": "array",
              "items": {
                "type": "number"
              }
            },
            "temperatureMin": {
              "type": "array",
              "items": {
                "type": "number"
              }
            },
            "validTimeLocal": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "moonriseTimeUtc": {
              "type": "array",
              "items": {
                "type": [
                  "number",
                  "null"
                ]
              },
              "description": "Unix timestamp (seconds). Null paired with an empty local string."
            },
            "sunsetTimeLocal": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "moonsetTimeLocal": {
              "type": "array",
              "items": {
                "type": "string"
              },
              "description": "ISO-8601-with-offset local timestamp; can be an empty string (see moonriseTimeLocal)."
            },
            "sunriseTimeLocal": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "expirationTimeUtc": {
              "type": "array",
              "items": {
                "type": "number"
              },
              "description": "Unix timestamp (seconds) this forecast entry expires."
            },
            "moonriseTimeLocal": {
              "type": "array",
              "items": {
                "type": "string"
              },
              "description": "ISO-8601-with-offset local timestamp. Observed as an empty string on the Antarctic fixture for days the moon does not rise above the horizon at that latitude -- not a phone number (a capture-time PII heuristic flagged this and the sibling *Local fields as possible phone numbers; confirmed against the real values, they are timestamp strings)."
            },
            "calendarDayTemperatureMax": {
              "type": "array",
              "items": {
                "type": "number"
              }
            },
            "calendarDayTemperatureMin": {
              "type": "array",
              "items": {
                "type": "number"
              }
            }
          },
          "description": "Daily forecast. The vendor's own docs describe this as a 7-day forecast, but both real calls observed returned 8 parallel-array entries (today plus the next 7 days) -- the arrays below are documented at the length actually observed, not assumed from the vendor's '7-day' framing.",
          "additionalProperties": true
        },
        "hourly": {
          "type": "object",
          "properties": {
            "qpf": {
              "type": "array",
              "items": {
                "type": "number"
              }
            },
            "qpfIce": {
              "type": "array",
              "items": {
                "type": "number"
              }
            },
            "qpfRain": {
              "type": "array",
              "items": {
                "type": "number"
              }
            },
            "qpfSnow": {
              "type": "array",
              "items": {
                "type": "number"
              }
            },
            "stormId": {
              "type": "array",
              "items": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "description": "A named-storm identifier when an hour falls within an active tropical/named storm system; observed null on every entry in both real calls (neither location had an active named storm at capture time) -- a populated value is unconfirmed."
            },
            "uvIndex": {
              "type": "array",
              "items": {
                "type": "number"
              }
            },
            "iconCode": {
              "type": "array",
              "items": {
                "type": "number"
              }
            },
            "windGust": {
              "type": "array",
              "items": {
                "type": [
                  "number",
                  "null"
                ]
              },
              "description": "Null when no gust above the base wind speed is forecast for that hour -- observed as a real number for several early hours on the Antarctic fixture and null throughout on the New York fixture."
            },
            "dayOfWeek": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "windSpeed": {
              "type": "array",
              "items": {
                "type": "number"
              }
            },
            "cloudCover": {
              "type": "array",
              "items": {
                "type": "number"
              }
            },
            "dayOrNight": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "precipType": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "visibility": {
              "type": "array",
              "items": {
                "type": "number"
              }
            },
            "wxSeverity": {
              "type": "array",
              "items": {
                "type": "number"
              }
            },
            "temperature": {
              "type": "array",
              "items": {
                "type": "number"
              }
            },
            "precipChance": {
              "type": "array",
              "items": {
                "type": "number"
              }
            },
            "validTimeUtc": {
              "type": "array",
              "items": {
                "type": "number"
              }
            },
            "wxPhraseLong": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "uvDescription": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "windDirection": {
              "type": "array",
              "items": {
                "type": "number"
              }
            },
            "wxPhraseShort": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "iconCodeExtend": {
              "type": "array",
              "items": {
                "type": "number"
              }
            },
            "validTimeLocal": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "relativeHumidity": {
              "type": "array",
              "items": {
                "type": "number"
              }
            },
            "expirationTimeUtc": {
              "type": "array",
              "items": {
                "type": "number"
              }
            },
            "temperatureDewPoint": {
              "type": "array",
              "items": {
                "type": "number"
              }
            },
            "pressureMeanSeaLevel": {
              "type": "array",
              "items": {
                "type": "number"
              }
            },
            "temperatureFeelsLike": {
              "type": "array",
              "items": {
                "type": "number"
              }
            },
            "temperatureHeatIndex": {
              "type": "array",
              "items": {
                "type": "number"
              }
            },
            "temperatureWindChill": {
              "type": "array",
              "items": {
                "type": "number"
              }
            },
            "windDirectionCardinal": {
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          },
          "description": "Hourly forecast. Both real calls returned 48 parallel-array entries (roughly the next two days, hour by hour).",
          "additionalProperties": true
        }
      },
      "additionalProperties": true
    },
    "status": {
      "type": "string",
      "description": "'success' on both real calls observed."
    }
  },
  "description": "The forecast 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.0273
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