Public data / Catalogue
Copernicus Climate Data Store
Find climate data and documentation for downloading it through an API.
Before you use this resource
Downloads require an account and acceptance of dataset terms. Reanalysis combines models and observations.
- Published by
- ECMWF / Copernicus
- Source
- Public institution
- Collection
- Public data
- Resource type
- Catalogue
- Coverage
- Global; selection varies by dataset
- Documented formats
- GRIB
- Licence / terms
- Varies by resource
- API access
- Documented API
- Record review date
- 2026-09-06
- Last resource update
- Unknown
- Technical data audit
- Not performed
- Documentation
- Source reviewed
Documentation
The introduction or documentation was reviewed. Files and APIs were not comprehensively tested.
The cited page documents this record. Check the original source for terms and versions before reuse.
Direct API queries
curl -s 'https://catalogue.dataspace.copernicus.eu/odata/v1/Products?$top=5' | jq .import urllib.request
import json
url = "https://catalogue.dataspace.copernicus.eu/odata/v1/Products?$top=5"
req = urllib.request.Request(url, headers={"User-Agent": "CunoastereDeschisa/1.7"})
with urllib.request.urlopen(req) as resp:
data = json.loads(resp.read().decode("utf-8"))
print(json.dumps(data, indent=2)[:500])library(jsonlite)
data <- fromJSON("https://catalogue.dataspace.copernicus.eu/odata/v1/Products?$top=5")
str(data)INSTALL httpfs;
LOAD httpfs;
SELECT * FROM read_json_auto('https://catalogue.dataspace.copernicus.eu/odata/v1/Products?$top=5')
LIMIT 10;Executable query snippets for command line, data pipelines, or DuckDB.
Continue your research
Editorial suggestions for discovery. These links do not establish technical integration or licence compatibility.