Valhalla Status API

The Status API from Valhalla — 1 operation(s) for status.

OpenAPI Specification

valhalla-status-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Valhalla Routing Expansion Status API
  version: 3.x
  description: 'Open-source routing engine for OpenStreetMap data.

    All POST endpoints accept JSON (some also protobuf with `Content-Type: application/x-protobuf`).

    '
  license:
    name: MIT
    url: https://github.com/valhalla/valhalla/blob/master/COPYING
servers:
- url: https://valhalla1.openstreetmap.de
security: []
tags:
- name: Status
paths:
  /status:
    get:
      operationId: status
      summary: /status
      description: Service health and tileset info
      responses:
        '200':
          description: Status info
          content:
            application/json:
              examples:
                default:
                  externalValue: ./examples/status.json
        '400':
          $ref: '#/components/responses/Error'
        '429':
          $ref: '#/components/responses/RateLimited'
      tags:
      - Status
components:
  responses:
    Error:
      description: Request error
      content:
        application/json:
          schema:
            type: object
            properties:
              error_code:
                type: integer
              error:
                type: string
              status_code:
                type: integer
              status:
                type: string
    RateLimited:
      description: 'Rate limit exceeded. The public service enforces a per-user limit of

        1 request per second and a global limit of 100 requests per second.

        The body is nginx''s default 429 HTML page.

        '
      content:
        text/html:
          schema:
            type: string