Access cultural policies and measures reported by Parties to the UNESCO 2005 Convention on the Protection and Promotion of the Diversity of Cultural Expressions. Includes policy details, implementation agencies, goals, SDG alignment, and geographic data.
Parameters (4)
limit(integer, query, optional, default: 10)
Maximum number of records to return (default: 10)
Constraints: {'maximum': 100}
offset(integer, query, optional, default: 0)
Offset for pagination
select(string, query, optional)
Comma-separated list of fields to return
where(string, query, optional)
Filter records using OpenDataSoft query syntax (e.g., countries:"FR", date:"2020", goal:"Support Sustainable Systems Of Governance For Culture")
import zingu_apis
api = zingu_apis.api("unesco-culture-statistics")
result = api.fetch("catalog/datasets/dce002/records", limit=10, offset=0)
for item in result:
print(item)
const resp = await fetch("https://data.unesco.org/api/v2/catalog/datasets/dce002/records?limit=10&offset=0");
const data = await resp.json();