This section documents the CKAN API, for developers. The CKAN Action API is an API that exposes all the main features of CKAN to API clients. For example, using the CKAN API, your application can:
Get JSON-formatted lists of datasets from a site, organizations, groups, or other CKAN objects:
- https://datos.dipgra.es/api/3/action/package_list
- https://datos.dipgra.es/api/3/action/organization_list
- https://datos.dipgra.es/api/3/action/group_list
- https://datos.dipgra.es/api/3/action/tag_list
Search for packages or resources that match a query:
- https://datos.dipgra.es/api/3/action/package_search?q=turismo
- https://datos.dipgra.es/api/3/action/resource_search?query=name:face
Get a full JSON representation of a dataset, resource or other object:
- https://datos.dipgra.es/api/3/action/package_show?id=1
- https://datos.dipgra.es/api/3/action/tag_show?id=dir3
- https://datos.dipgra.es/api/3/action/organization_show?id=granada
Create, update and delete datasets, resources and other objects.
Get an activity stream of recently modified datasets on a site:
For detailed information on the CKAN API access the url: https://docs.ckan.org/en/2.8/api/
Information about formats :