CKAN Data API

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

ปลายทาง »

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

สร้าง https://opendata.led.go.th/th/api/3/action/datastore_create
ปรับปรุง/เพิ่ม https://opendata.led.go.th/th/api/3/action/datastore_upsert
เรียกดูข้อมูล https://opendata.led.go.th/th/api/3/action/datastore_search
กำลังเรียกข้อมูล » (จำกัดผลลัพธ์ 10,000 เรคคอร์ด)
ตัวอย่างเรียกข้อมูล (5 ผลลัพธ์แรก)

https://opendata.led.go.th/th/api/3/action/datastore_search?limit=5&resource_id=0b641fa9-138f-4a51-8b67-504410d2cef8

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

https://opendata.led.go.th/th/api/3/action/datastore_search?q=jones&resource_id=0b641fa9-138f-4a51-8b67-504410d2cef8

ตัวอย่าง: Javascript »

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

        var data = {
          resource_id: '0b641fa9-138f-4a51-8b67-504410d2cef8', // the resource id
          limit: 5, // get 5 results
          q: 'jones' // query for 'jones'
        };
        $.ajax({
          url: 'https://opendata.led.go.th/th/api/3/action/datastore_search',
          data: data,
          dataType: 'jsonp',
          success: function(data) {
            alert('Total results found: ' + data.result.total)
          }
        });
ตัวอย่าง: Python »
      import urllib
      url = 'https://opendata.led.go.th/th/api/3/action/datastore_search?limit=5&resource_id=0b641fa9-138f-4a51-8b67-504410d2cef8&q=title:jones'  
      fileobj = urllib.urlopen(url)
      print fileobj.read()