connect logo
API Changelog
Download source
  • JSON OpenAPI specification
  • YAML OpenAPI specification

Topics

  • Introduction
  • Api-key
  • Credits
  • Base Url
  • Error Codes

Endpoints

  • Emission API
    • Search for terminals in the Routescanner system for use in distance and/or emissions queries. GET
    • Get emissions between two points using the given modality. GET
  • Optimizer API
    • Get voyage options between locations GET
Powered by Bump.sh

Search for terminals in the Routescanner system for use in distance and/or emissions queries.

GET /route-information/api/terminals

Query parameters

  • terminalLocode string Required

    Locode where terminal is located.

  • terminalName string

    Name of terminal. We will try to match it with names found in our system. If left empty, will return all terminals under locode.

Responses

  • 200 application/json

    Found terminals

    Hide response attributes Show response attributes object
    • id string(uuid) Required
    • name string Required
    • locode string Required
  • 204

    No terminals were found.

  • 400

    Bad request, query parameters were wrong

  • 500

    Something went wrong on our side.

GET /route-information/api/terminals
curl \
 --request GET 'https://connect.routescanner.com/route-information/api/terminals?terminalLocode=string'
Response examples (200)
[
  {
    "id": "string",
    "name": "string",
    "locode": "string"
  }
]