Navis (Kaleris) Operations API

Work queues and crane operations

Operations 1

GET /work-queues Get active work queues #

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/navis-operations-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

navis-operations-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Navis N4 Terminal Operating System REST Gate Operations API
  description: NAVIS N4 provides terminal operating system APIs for container port operations. APIs enable container tracking, vessel planning, berth scheduling, yard management, and gate operations for port terminals and intermodal facilities. Now operated by Kaleris, serving 650+ organizations across 95+ countries.
  version: 2.0.0
  contact:
    name: Kaleris Support
    url: https://kaleris.com/support/
  license:
    name: Proprietary
    url: https://kaleris.com/terms-and-conditions/
servers:
- url: https://{terminal}.navis.example.com/apex/n4/api/v2
  variables:
    terminal:
      default: yourterminal
      description: Your N4 terminal instance hostname
security:
- BasicAuth: []
- APIKey: []
tags:
- name: Operations
  description: Work queues and crane operations
paths:
  /work-queues:
    get:
      operationId: getWorkQueues
      summary: Get active work queues
      description: Retrieve current crane and equipment work queues showing pending moves.
      tags:
      - Operations
      parameters:
      - name: craneId
        in: query
        schema:
          type: string
      - name: status
        in: query
        schema:
          type: string
          enum:
          - QUEUED
          - IN_PROGRESS
          - COMPLETE
      responses:
        '200':
          description: Work queues
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WorkQueueListResponse'
components:
  schemas:
    WorkQueue:
      type: object
      properties:
        workQueueId:
          type: string
        craneId:
          type: string
        moveType:
          type: string
          enum:
          - LOAD
          - DISCH
          - SHIFT
          - DRAY
          - RECV
        fromPosition:
          type: string
        toPosition:
          type: string
        containerNbr:
          type: string
        priority:
          type: integer
        status:
          type: string
          enum:
          - QUEUED
          - IN_PROGRESS
          - COMPLETE
        assignedTo:
          type: string
          description: Equipment ID assigned to the move
    WorkQueueListResponse:
      type: object
      properties:
        queues:
          type: array
          items:
            $ref: '#/components/schemas/WorkQueue'
        totalCount:
          type: integer
  securitySchemes:
    BasicAuth:
      type: http
      scheme: basic
    APIKey:
      type: apiKey
      in: header
      name: X-API-Key
externalDocs:
  description: Kaleris N4 Documentation
  url: https://kaleris.com/