Open-meteo Scraper
Spider read open-meteo.com in 267 ms without a browser and returned 85 lines of clean markdown, including sections like "Multiple Historical Data Layers", "Open-Source" and "Free API".
15-minutely data is available for Central Europe and North America, interpolated fromhourly model output elsewhere.### Multiple Historical Data LayersFour complementary historical datasets — each suited to a different use case:* **ERA5 reanalysis** — 1940 to present, 0.1–0.25°, gap-free global grid. For climate baselines and long-range* **Historical Forecast archive** — from 2021, same format as the live Forecast API. For bias-correction and post-processing* **Previous Runs API** — continuous time series at a fixed lead-time offset of 1–7 days, from January 2024. Forlead-time-stratified skill analysis.* **Single Runs API** — archived individual runs by exact init time. ECMWF IFS HRES from March 2024. For ML post-processingwithout look-ahead bias and operational backtesting.### Open-SourceThe full server codebase is on GitHub under the AGPLv3 licence.You can self-host your own instance for unlimited API calls — useful for high-volume MLworkloads or air-gapped environments.All data served by the API is licenced under CC BY 4.0 — free to use and redistribute, including for commercial purposes, with attribution.### Free APINo API key, no sign-up, no credit card. Non-commercial use up to 10,000 daily API calls isfree. Attribution is required under the CC BY 4.0 data licence.For commercial use or higher call volumes, subscription plans are available with rate-limit increases and priority support.### Simple JSON APIAll APIs use plain HTTP GET requests with query parameters and return JSON. No SDK orauthentication is required for non-commercial use. Parameters are consistent acrossforecast and historical weather APIs — the same variable names, unit options, and outputCSV and XLSX output formats are also available. Multiple locations can be queried in asingle request by providing comma-separated coordinate lists. Full parameter reference is## Stay informed The same call, in code.
The capture above came back as markdown. These examples add a key, so you get browser rendering, proxies, and concurrency on open-meteo.com.
import { SpiderBrowser } from "spider-browser";
const spider = new SpiderBrowser({
apiKey: process.env.SPIDER_API_KEY!,
});
await spider.connect();
const page = spider.page!;
await page.goto("https://open-meteo.com");
// No selectors, no schema. Spider reads the page and names the fields.
const data = await page.scrape();
console.log(data);
await spider.close(); import { Spider } from "@spider-cloud/spider-client";
const spider = new Spider({ apiKey: process.env.SPIDER_API_KEY! });
const result = await spider.scrapeUrl("https://www.open-meteo.com", {
return_format: "markdown",
});
console.log(result); Ready for volume? Get an API key →
Fields you can pull.
Spider names these from the page. The capture above came back as markdown; the same
call with return_format: "json" returns them as keys.
What open-meteo.com costs to scrape.
The capture above cost $0.000092 to fetch. Pricing is $1 per GB of pre-transformation bandwidth plus $0.001 per CPU minute, so a page like this one lands at a fraction of a cent. Failed requests are billed at $0.
- Free balance on signup
- No card required to test
- Balance never expires
Run it keyless, no account
More Directories scrapers.
Spotify Main Page Scraper
Extract structured data from Spotify Main Page with automated CSS selectors.
Roblox Landing Page Scraper
Roblox landing page metadata and cookie banner information.
Mozilla Homepage Data Scraper
A scraper for extracting all useful data from the Mozilla homepage, including site metadata, navigation, and content.
Start scraping open-meteo.com.
You already have the call. A key raises the rate limit and turns on browser rendering, proxies, and concurrency. Balance never expires, and top-ups go through secure checkout.