curl --request GET \
--url https://data.kushiro.app/api/v1/pointsimport requests
url = "https://data.kushiro.app/api/v1/points"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://data.kushiro.app/api/v1/points', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://data.kushiro.app/api/v1/points",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://data.kushiro.app/api/v1/points"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://data.kushiro.app/api/v1/points")
.asString();require 'uri'
require 'net/http'
url = URI("https://data.kushiro.app/api/v1/points")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"points": [
{
"id": 1,
"source_id": "kushiro_aed_locations",
"external_id": "aed-1",
"name": "市役所本庁舎",
"category": "aed",
"address": "釧路市黒金町7丁目5番地",
"lat": null,
"lng": null,
"geohash": null,
"attributes": {
"file_url": "https://data.kushiro.app/files/example.pdf"
},
"fetched_at": "2026-04-29T00:00:00.000Z",
"raw_blob_key": "raw/kushiro_aed_locations/2026-04-29T00-00-00.000Z/file.pdf"
}
],
"total": 1,
"limit": 1000,
"offset": 0
}{
"error": "invalid query parameters",
"issues": [
{
"path": "source",
"message": "Invalid input: expected string, received undefined"
}
]
}{
"error": "internal server error"
}Query facility/location data
Returns facility and location-style data records. source is required; all other filters are optional. Attribute filters are passed as attr.<key>=<value> query parameters and AND-combined (for example ?attr.bill_type=予算&attr.decision=否決); only keys whitelisted for the given source are accepted (others return 400). The bounding-box filters (bbox_south/bbox_north/bbox_west/bbox_east) must be supplied as a complete set of four or omitted entirely, and exclude points without coordinates.
curl --request GET \
--url https://data.kushiro.app/api/v1/pointsimport requests
url = "https://data.kushiro.app/api/v1/points"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://data.kushiro.app/api/v1/points', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://data.kushiro.app/api/v1/points",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://data.kushiro.app/api/v1/points"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://data.kushiro.app/api/v1/points")
.asString();require 'uri'
require 'net/http'
url = URI("https://data.kushiro.app/api/v1/points")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"points": [
{
"id": 1,
"source_id": "kushiro_aed_locations",
"external_id": "aed-1",
"name": "市役所本庁舎",
"category": "aed",
"address": "釧路市黒金町7丁目5番地",
"lat": null,
"lng": null,
"geohash": null,
"attributes": {
"file_url": "https://data.kushiro.app/files/example.pdf"
},
"fetched_at": "2026-04-29T00:00:00.000Z",
"raw_blob_key": "raw/kushiro_aed_locations/2026-04-29T00-00-00.000Z/file.pdf"
}
],
"total": 1,
"limit": 1000,
"offset": 0
}{
"error": "invalid query parameters",
"issues": [
{
"path": "source",
"message": "Invalid input: expected string, received undefined"
}
]
}{
"error": "internal server error"
}Query Parameters
Source ID to query.
1Point category exact match, for example aed, public_facility, or school_elementary.
1Exact external_id match for a single-record lookup. Unique per source, so at most one record is returned.
1Substring match against name. Case-insensitive for ASCII, literal match for non-ASCII (Japanese).
1Substring match against address. Same case-sensitivity semantics as name_contains.
1South edge latitude of the bounding box. Must be supplied together with bbox_north/bbox_west/bbox_east.
-90 <= x <= 90North edge latitude of the bounding box (bbox_south <= bbox_north).
-90 <= x <= 90West edge longitude of the bounding box (bbox_west <= bbox_east; date-line wrap is not supported).
-180 <= x <= 180East edge longitude of the bounding box.
-180 <= x <= 180Maximum number of items to return. Defaults to 1000.
1 <= x <= 10000Number of items to skip. Defaults to 0.
x >= 0