- Beschrijving: Kerncijfers Arbeidsmartkmonitor
- Bron: Arbeidsmarktmonitor 2016 - Meer mensen aan de slag
- Format: CSV
- Status: Onbewerkt, volledig.
- opmerking veldnamen: geen
Kerncijfers_GemeenteUtrecht_Arbeidsmarktmonitor 2016.csv
CKAN Data API
Access resource data via a web API with powerful query support. Further information in the main CKAN Data API and DataStore documentation.
The Data API can be accessed via the following actions of the CKAN action API.
Create | https://ckan.dataplatform.nl/api/action/datastore_create |
---|---|
Update / Insert | https://ckan.dataplatform.nl/api/action/datastore_upsert |
Query | https://ckan.dataplatform.nl/api/action/datastore_search |
Query (via SQL) | https://ckan.dataplatform.nl/api/action/datastore_search_sql |
Query example (first 5 results)
Query example (results that contain 'jones')
Query example (With a SQL statement))
A simple ajax (JSONP) request to the data API using jQuery.
var data = { resource_id: '71ef1fcd-a296-44df-836a-2348f643371f', // the resource id limit: 5, // get 5 results q: '' }; $.ajax({ url: 'https://ckan.dataplatform.nl/api/action/datastore_search', data: data, dataType: 'jsonp', success: function(data) { alert('Total results found: ' + data.result.total) } });
import urllib url = 'https://ckan.dataplatform.nl/api/action/datastore_search?resource_id=71ef1fcd-a296-44df-836a-2348f643371f&limit=5' fileobj = urllib.urlopen(url) print fileobj.read()
Laatst gewijzigd: 10 augustus 2017