Agricultural
FAOSTAT
FAO corporate statistical database. Crop production, land use and inputs by country since 1961.
Production, harvested area and yield by crop and country, land use, fertilizer and pesticide use, emissions and trade. Bulk downloads cover every domain.
- Source
- Food and Agriculture Organization of the United Nations
- Resolution
- Country/region
- Data type
- Country/region
- Time span
- 1961–present
- Temporal
- Annual
- Access type
- Direct download (external)
- Formats
- CSV, API
- Coverage
- Global (-180, -90, 180, 90)
- Licence
- CC BY 4.0
- Provider page
- www.fao.org/faostat/
Access
linkFAOSTAT data and bulk downloads
curl "https://hydrological.org/api/v1/datasets/faostat/links?bbox=-75,-20,-50,5" \
-H "Accept: application/json"
import requests
r = requests.get("https://hydrological.org/api/v1/datasets/faostat/links",
params={"bbox": "-75,-20,-50,5"})
for group in r.json()["groups"]:
for link in group["links"]:
print(link["url"])
const res = await fetch("https://hydrological.org/api/v1/datasets/faostat/links?bbox=-75,-20,-50,5");
const { groups } = await res.json();
for (const g of groups) g.links.forEach(l => console.log(l.url));
Also available as JSON: links · manifest · dataset record