CKAN Data API

เข้าถึงทรัพยากรข้อมูลผ่าน API ของเว็บด้วยภาษาสอบถามที่ทรงพลัง. Further information in the main CKAN Data API and DataStore documentation.

Data API สามารถเข้าถึงได้ด้วยการเรียกใช้ CKAN action API

สร้าง https://ckan.meghalayadataportal.com/th/api/3/action/datastore_create
ปรับปรุง/เพิ่ม https://ckan.meghalayadataportal.com/th/api/3/action/datastore_upsert
เรียกดูข้อมูล https://ckan.meghalayadataportal.com/th/api/3/action/datastore_search
เรียกดูข้อมูล (ผ่าน SQL) https://ckan.meghalayadataportal.com/th/api/3/action/datastore_search_sql

ตัวอย่างเรียกข้อมูล (5 ผลลัพธ์แรก)

https://ckan.meghalayadataportal.com/th/api/3/action/datastore_search?resource_id=5b4d72c9-f251-4612-abb7-3277a1ee57a6&limit=5

ตัวอย่างเรียกข้อมูล (ผลลัพธ์มีคำว่า 'jones')

https://ckan.meghalayadataportal.com/th/api/3/action/datastore_search?resource_id=5b4d72c9-f251-4612-abb7-3277a1ee57a6&q=jones

ตัวอย่างเรียกข้อมูล (โดยการใช้คำสั่ง SQL)

https://ckan.meghalayadataportal.com/th/api/3/action/datastore_search_sql?sql=SELECT * from "5b4d72c9-f251-4612-abb7-3277a1ee57a6" WHERE title LIKE 'jones'

คำขอแบบ ajax (JSONP) พื้นฐาน เพื่อร้องขอข้อมูลผ่าน API โดยใช้ jQuery

          var data = {
            resource_id: '5b4d72c9-f251-4612-abb7-3277a1ee57a6', // the resource id
            limit: 5, // get 5 results
            q: 'jones' // query for 'jones'
          };
          $.ajax({
            url: 'https://ckan.meghalayadataportal.com/th/api/3/action/datastore_search',
            data: data,
            dataType: 'jsonp',
            success: function(data) {
              alert('Total results found: ' + data.result.total)
            }
          });
        import urllib.request
        url = 'https://ckan.meghalayadataportal.com/th/api/3/action/datastore_search?resource_id=5b4d72c9-f251-4612-abb7-3277a1ee57a6&limit=5&q=title:jones'  
        fileobj = urllib.request.urlopen(url)
        print(fileobj.read())