This section documents the CKAN API, for developers who want to write code that interacts with CKAN and its data.
The CKAN API is a powerful RPC-style API that exposes the core functions of CKAN to API clients. All the core functionality of a CKAN website (everything you can do with the web interface and more) can be used by external code that calls the CKAN API. For example, using the CKAN API, your application can:
Get JSON-formatted lists of site datasets, groups or other CKAN objects:
https://datosabertos.turismourense.com/datosabiertos/catalogo/api/3/action/package_list
https://datosabertos.turismourense.com/datosabiertos/catalogo/api/3/action/group_list
https://datosabertos.turismourense.com/datosabiertos/catalogo/api/3/action/tag_list
Get a complete JSON representation of a dataset, resource or other object:
https://datosabertos.turismourense.com/datosabiertos/catalogo/api/3/action/package_show?id=turistas-en-febrero-2021
https://datosabertos.turismourense.com/datosabiertos/catalogo/api/3/action/tag_show?id=Turismo
https://datosabertos.turismourense.com/datosabiertos/catalogo/api/3/action/group_show?id=comercio
Find packages or resources that match a query:
https://datosabertos.turismourense.com/datosabiertos/catalogo/api/3/action/package_search?q=turistas-en-febrero-2021
https://datosabertos.turismourense.com/datosabiertos/catalogo/api/3/action/resource_search?query=name:Instalaciones%20Deportivas.kml
http://docs.ckan.org/en/latest/api/