> ## 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.

# Get service information

> Returns preview status, contact information, terms URL, and the public endpoint list.



## OpenAPI

````yaml /openapi.json get /api/v1
openapi: 3.1.0
info:
  title: k-Data
  version: 0.1.0
  description: >-
    Preview read-only API for reshaped public data collected from Kushiro City
    sources. Response shapes, URLs, and published datasets may change without
    notice.
  license:
    name: CC BY 4.0
    url: https://creativecommons.org/licenses/by/4.0/deed.ja
servers:
  - url: https://data.kushiro.app
    description: Production
security: []
tags:
  - name: service
    description: Service metadata and health endpoints.
  - name: sources
    description: Published source summaries.
  - name: metrics
    description: Numeric data records.
  - name: points
    description: >-
      Facility and location-style data records such as public facilities, AED
      locations, evacuation sites, and indexes.
  - name: terms
    description: Terms of use and attribution notes.
paths:
  /api/v1:
    get:
      tags:
        - service
      summary: Get service information
      description: >-
        Returns preview status, contact information, terms URL, and the public
        endpoint list.
      operationId: getServiceInfo
      responses:
        '200':
          description: Service information.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServiceInfo'
              examples:
                default:
                  value:
                    service: k-Data API
                    version: 0.1.0
                    status: preview
                    notice: >-
                      This API is a preview service. Specifications, URLs,
                      response shapes, and published datasets may change without
                      notice.
                    terms: /api/terms
                    contact:
                      x: '@riaf'
                    endpoints:
                      - /api/v1/health
                      - /api/v1/sources
                      - /api/v1/sources/:id
                      - /api/v1/metrics
                      - /api/v1/metrics/aggregate
                      - /api/v1/points
                      - /api/v1/points/facets
                      - /api/v1/points/near
                      - /api/terms
                      - /docs
                      - /mcp
        '500':
          $ref: '#/components/responses/InternalServerError'
components:
  schemas:
    ServiceInfo:
      type: object
      required:
        - service
        - version
        - status
        - notice
        - terms
        - contact
        - endpoints
      properties:
        service:
          type: string
          example: k-Data
        version:
          type: string
          example: 0.1.0
        status:
          type: string
          example: preview
        notice:
          type: string
        terms:
          type: string
          example: /api/terms
        contact:
          type: object
          required:
            - x
          properties:
            x:
              type: string
              example: '@riaf'
          additionalProperties: false
        endpoints:
          type: array
          items:
            type: string
      additionalProperties: false
    InternalServerError:
      type: object
      required:
        - error
      properties:
        error:
          type: string
          example: internal server error
      additionalProperties: false
  responses:
    InternalServerError:
      description: Unexpected server error.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/InternalServerError'
          examples:
            default:
              value:
                error: internal server error

````