Skip to main content
GET
/
api
/
v1
/
points
Query facility/location data
curl --request GET \
  --url https://data.kushiro.app/api/v1/points
{
  "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
}

Documentation Index

Fetch the complete documentation index at: https://data.kushiro.app/docs/llms.txt

Use this file to discover all available pages before exploring further.

Query Parameters

source
string
required

Source ID to query.

Minimum string length: 1
category
string

Point category exact match, for example aed, public_facility, or school_elementary.

Minimum string length: 1
limit
integer
default:1000

Maximum number of items to return. Defaults to 1000.

Required range: 1 <= x <= 10000
offset
integer
default:0

Number of items to skip. Defaults to 0.

Required range: x >= 0

Response

Point query result.

points
object[]
required
total
integer
required
Required range: x >= 0
limit
integer
required
Required range: 1 <= x <= 10000
offset
integer
required
Required range: x >= 0