HarborHarbor
DocumentationGuidesPlugins
All plugins

Open-Meteo API

Official Open-Meteo weather forecast API imported from its OpenAPI spec

APICategory: dataPopularity 58open_meteo

Official Open-Meteo weather forecast API imported from its OpenAPI spec

Install

hrbr plugins install open-meteo-api

Harbor calls https://api.open-meteo.com (driven by the upstream OpenAPI spec).

Quick start

hrbr exec 'return await open_meteo.get({ /* see schema */ })'

Or from a Function:

import { defineOrbitJob } from "@hrbr/orbit";

export default defineOrbitJob({
  name: "open-meteo-api-example",
  handler: async (ctx) => {
    return await ctx.plugins.open_meteo.list({ limit: 5 });
  },
});

Tools

Tools are generated from the upstream OpenAPI spec. Inspect with:

hrbr plugins tools open-meteo-api

Or open the dashboard plugin page for the live tool list.