Copy the following HTML and paste into your webpage to embed this view.
<iframe src='https://catalog.sarawak.gov.my/dataset/senarai-pegawai-gred-s41-ke-atas-jabatan-mufti-negeri-sarawak/resource/523e8fac-03dd-477f-9de6-619acf937e2e/view/9b861b4e-a815-48aa-942d-b197c7202b89' frameBorder="0"></iframe>
The Data API can be accessed via the following actions of the CKAN action API.
https://catalog.sarawak.gov.my/api/3/action/datastore_search
https://catalog.sarawak.gov.my/api/3/action/datastore_search?resource_id=523e8fac-03dd-477f-9de6-619acf937e2e&limit=5
https://catalog.sarawak.gov.my/api/3/action/datastore_search?resource_id=523e8fac-03dd-477f-9de6-619acf937e2e&q=jones
A simple ajax (JSONP) request to the data API using jQuery.
var data = { resource_id: '523e8fac-03dd-477f-9de6-619acf937e2e', // the resource id limit: 5, // get 5 results q: 'jones' // query for 'jones' }; $.ajax({ url: 'https://catalog.sarawak.gov.my/api/3/action/datastore_search', data: data, dataType: 'jsonp', success: function(data) { alert('Total results found: ' + data.result.total) } });
import urllib url = 'https://catalog.sarawak.gov.my/api/3/action/datastore_search?resource_id=523e8fac-03dd-477f-9de6-619acf937e2e&limit=5&q=title:jones' fileobj = urllib.urlopen(url) print fileobj.read()