Viking-Intraday1-20240628-002
NESO's Network Transfer Capacity restrictions submitted to Day-ahead and Intraday auctions
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.
Query example (first 5 results) |
---|
https://api.neso.energy/api/3/action/datastore_search?resource_id=753ec06e-7cc4-4353-b28b-4bc39e570aa6&limit=5
|
Query example (via SQL statement) |
https://api.neso.energy/api/3/action/datastore_search_sql?sql=SELECT * from "753ec06e-7cc4-4353-b28b-4bc39e570aa6" LIMIT 5
|
A simple ajax (JSONP) request to the data API using jQuery.
var data = { resource_id: '753ec06e-7cc4-4353-b28b-4bc39e570aa6', // the resource id limit: 5 // get 5 results }; $.ajax({ url: 'https://api.neso.energy/api/3/action/datastore_search', data: data, dataType: 'jsonp', success: function(data) { alert('Total results found: ' + data.result.total) } });
A simple ajax (JSONP) request to the data API using jQuery.
import urllib2 url = 'https://api.neso.energy/api/3/action/datastore_search?resource_id=753ec06e-7cc4-4353-b28b-4bc39e570aa6&limit=5' fileobj = urllib2.urlopen(url) print fileobj.read()