• theme of the bet by anton chekhov2025-09-03 22:28
  • sex videos sleeping girl2025-09-03 22:32
  • beautiful muslim girl sex video2025-09-03 22:54
  • perfect lucky casino last dream2025-09-03 22:38
  • sex scandal girl band korea video2025-09-03 23:16
  • czech sex on street2025-09-03 22:33
  • xnxx vidio sex2025-09-03 22:57
  • best casinos that accept paysafecard2025-09-03 22:54
  • kanksporno org sex 17161 download video bokep korean terbaru2025-09-03 22:52
  • video sex remaja cantik2025-09-03 22:57
  • fifty shades of grey sex videos2025-09-03 22:47
  • betting over 1.5 goals2025-09-03 23:02
  • homemade male sex toys2025-09-03 22:45
  • sky bet division 1 table2025-09-03 22:55
  • baixar bet mobile2025-09-03 23:16
  • chumash casino resort santa barbara2025-09-03 22:53
  • bandar judi terbesar di indonesia2025-09-03 23:27
  • contoh bet jaga malam2025-09-03 22:49
  • 3d sex hot2025-09-03 22:45
  • betting metoder2025-09-03 23:23
  • download game sex apk2025-09-03 23:09
  • situs casino ibcbet2025-09-03 22:29
  • cheating sex porn videos2025-09-03 23:00
  • vidio bokef sex2025-09-03 23:20
  • seneca niagara casino and hotel2025-09-03 23:23
  • cerita sex mahasiswa2025-09-03 23:04
  • online betting uganda2025-09-03 22:44
  • sex agnes monica2025-09-03 23:06
  • shemale she and besexsual three some sex video2025-09-03 23:21
  • video sex ibu2025-09-03 23:08
  • video sex terbaru indonesia2025-09-03 22:45
  • cincinnati casino hotel2025-09-03 23:19
  • oranje casino oplichters2025-09-03 22:34
  • sex bebas ala indonesia2025-09-03 22:30
  • vasectomy and sex drive2025-09-03 23:04

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://data.deliserdangkab.go.id/lt/api/3/action/datastore_create
Update / Insert https://data.deliserdangkab.go.id/lt/api/3/action/datastore_upsert
Query https://data.deliserdangkab.go.id/lt/api/3/action/datastore_search

Query example (first 5 results)

https://data.deliserdangkab.go.id/lt/api/3/action/datastore_search?resource_id=2ec66003-c4e2-4208-8158-6e4e4324b7f4&limit=5

Query example (results containing 'jones')

https://data.deliserdangkab.go.id/lt/api/3/action/datastore_search?resource_id=2ec66003-c4e2-4208-8158-6e4e4324b7f4&q=jones

A simple ajax (JSONP) request to the data API using jQuery.

          var data = {
            resource_id: '2ec66003-c4e2-4208-8158-6e4e4324b7f4', // the resource id
            limit: 5, // get 5 results
            q: 'jones' // query for 'jones'
          };
          $.ajax({
            url: 'https://data.deliserdangkab.go.id/lt/api/3/action/datastore_search',
            data: data,
            dataType: 'jsonp',
            success: function(data) {
              alert('Total results found: ' + data.result.total)
            }
          });
        import urllib.request
        url = 'https://data.deliserdangkab.go.id/lt/api/3/action/datastore_search?resource_id=2ec66003-c4e2-4208-8158-6e4e4324b7f4&limit=5&q=title:jones'  
        fileobj = urllib.request.urlopen(url)
        print(fileobj.read())