CKAN Data API

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

ปลายทาง »

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

สร้าง http://opendata.city.niigata.lg.jp/th/api/3/action/datastore_create
ปรับปรุง/เพิ่ม http://opendata.city.niigata.lg.jp/th/api/3/action/datastore_upsert
เรียกดูข้อมูล http://opendata.city.niigata.lg.jp/th/api/3/action/datastore_search
เรียกดูข้อมูล (ผ่าน SQL) http://opendata.city.niigata.lg.jp/th/api/3/action/datastore_search_sql
กำลังเรียกข้อมูล »
ตัวอย่างเรียกข้อมูล (5 ผลลัพธ์แรก)

http://opendata.city.niigata.lg.jp/th/api/3/action/datastore_search?resource_id=51971395-8fa7-4c1a-a999-a3dc0f8a1a2d&limit=5

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

http://opendata.city.niigata.lg.jp/th/api/3/action/datastore_search?resource_id=51971395-8fa7-4c1a-a999-a3dc0f8a1a2d&q=jones

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

http://opendata.city.niigata.lg.jp/th/api/3/action/datastore_search_sql?sql=SELECT * from "51971395-8fa7-4c1a-a999-a3dc0f8a1a2d" WHERE title LIKE 'jones'

ตัวอย่าง: Javascript »

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

        var data = {
          resource_id: '51971395-8fa7-4c1a-a999-a3dc0f8a1a2d', // the resource id
          limit: 5, // get 5 results
          q: 'jones' // query for 'jones'
        };
        $.ajax({
          url: 'http://opendata.city.niigata.lg.jp/th/api/3/action/datastore_search',
          data: data,
          dataType: 'jsonp',
          success: function(data) {
            alert('Total results found: ' + data.result.total)
          }
        });
ตัวอย่าง: Python »
      import urllib
      url = 'http://opendata.city.niigata.lg.jp/th/api/3/action/datastore_search?resource_id=51971395-8fa7-4c1a-a999-a3dc0f8a1a2d&limit=5&q=title:jones'  
      fileobj = urllib.urlopen(url)
      print fileobj.read()