Documentation and reference material for building on the Convention's data — starting with the Clearing-House API across CHM, ABSCH, BCH and ORT.
GET api.cbd.int/api/v2013/index# Search published Clearing-House records curl -G "https://api.cbd.int/api/v2013/index" \ --data-urlencode "q=schema_s:resource" \ -H "Accept: application/json" # → 200 OK · JSON list of matching records
The Clearing-House API serves records from each of the Convention's information-sharing platforms through a common schema model.
Plain HTTPS and JSON — usable from any language, no SDK needed.
GET request and filter by schema, government or realm.# Search published Clearing-House records curl -G "https://api.cbd.int/api/v2013/index" \ --data-urlencode "q=schema_s:resource" \ -H "Accept: application/json" # → 200 OK · JSON list of matching records
Checks run in your browser using fetch(..., {mode:"no-cors"}) with a 5s timeout, so they only detect whether a connection could be established — not HTTP status codes.