Kontakt.io Gateways API

The Gateways API from Kontakt.io — 1 operation(s) for gateways.

Operations 1

GET /v2/locations/gateways List all gateways #

Documentation

Specifications

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/kontaktio-gateways-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

kontaktio-gateways-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Location & Occupancy Gateways API
  version: '1.0'
  description: Real-time and historical Kio Cloud apps data including location tracking, occupancy, and telemetry.
  contact:
    name: Kontakt.io Support
    url: https://support.kontakt.io
    email: support@kontakt.io
  termsOfService: https://kontakt.io/terms-of-service
  summary: Real-time and historical Kio Cloud apps data including location tracking, occupancy, and telemetry.
servers:
- url: https://apps.cloud.us.kontakt.io
  description: 'Kio Cloud US '
- url: https://apps.cloud.uk.kontakt.io
  description: Kio Cloud UK
security:
- API Key - 1: []
tags:
- name: Gateways
paths:
  /v2/locations/gateways:
    get:
      summary: List all gateways
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Floor-Gateways'
              examples:
                example-1:
                  value:
                    links:
                    - rel: self
                      href: https://apps.cloud.us.kontakt.io/v2/locations/gateways?page=0&size=100&sort=id,asc
                    content:
                    - id: 24305
                      lat: 57.4770162657816
                      lng: -101.69751627231699
                      altitude: 87.35568496060814
                      x: 1085.0987979465135
                      y: 63801.81179821145
                      z: 4.014334689282525
                      verticalOrientation: 84
                      range: -147
                      virtual: false
                      sourceId: DyYlymXTSBZIGtHN
                      floor:
                        id: 25197
                    page:
                      size: 100
                      totalElements: 1
                      totalPages: 1
                      number: 0
      operationId: get-v2-locations-gateways
      description: Returns a list of all gateways located in all floors. Data returned includes each gateway's floor location, position details including coordinate values and range (RSSI).
      tags:
      - Gateways
      security:
      - api_key: []
components:
  schemas:
    Floor-Gateways:
      description: 'Floor gateways. '
      type: object
      x-examples:
        example-1:
          links:
          - rel: self
            href: https://apps.cloud.us.kontakt.io/v2/locations/gateways?page=0&size=100&sort=id,asc
          content:
          - id: 24305
            lat: 57.4770162657816
            lng: -101.69751627231699
            altitude: 87.35568496060814
            x: 1085.0987979465135
            y: 63801.81179821145
            z: 4.014334689282525
            verticalOrientation: 84
            range: -147
            virtual: false
            sourceId: DyYlymXTSBZIGtHN
            floor:
              id: 25197
          page:
            size: 100
            totalElements: 1
            totalPages: 1
            number: 0
      properties:
        content:
          type: array
          uniqueItems: true
          minItems: 1
          items:
            type: object
            properties:
              id:
                type: number
                description: Id of the gateway.
              lat:
                type: number
                description: Latitude of a gateway.
              lng:
                type: number
                description: Longitude of a gateway.
              altitude:
                type: number
                description: Height in meters above sea level.
              x:
                type: number
                description: Horizontal coordinate of a gateway; in meters relative to baseline of floor.
              y:
                type: number
                description: Vertical coordinate of a gateway; in meters relative to baseline of floor.
              z:
                type: number
                description: Height coordinate of a gateway; in meters relative to baseline of floor.
              verticalOrientation:
                type: number
                description: Rotation in degrees on the horizontal plane. 0 = parallel to the ground facing up, 90 = on the wall, 180 = parallel to the ground facing down.
              range:
                type: number
                description: Minimum RSSI (Received Signal Strength Indicator). When calculating position, if strongest signal will have less RSSI than range, that result will be rejected and beacon considered lost.
              virtual:
                type: boolean
                description: Virtual gateway will be used to map lat, lng to sourceId. There should be one virtual gateway in each floor. Virtual gateway is created automatically when creating floor.
              sourceId:
                type: string
                minLength: 1
                description: SourceId of the gateway.
              floor:
                type: object
                description: Gateway's floor location.
                properties:
                  id:
                    type: number
                    description: Floor Id.
                required:
                - id
            required:
            - id
            - lat
            - lng
            - altitude
            - x
            - y
            - z
            - verticalOrientation
            - range
            - virtual
            - sourceId
      required:
      - content
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      description: 'Your Kio Cloud API Key is required to be provided in the `Api-Key` header in each API call.


        Get your API Key: sign in to **Kio Cloud** > select **Users** > select **Security** > copy your **Server API Key**.'
      name: Api-Key
x-: null