Show more

Use to navigate results, ENTER to select one, ESC to close

Type in any word to easily find the endpoint, property or group of operations you are looking for.

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

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
    • Get all operators GET
Powered by Bump.sh
API changelog
Download source
  • JSON OpenAPI specification
  • YAML OpenAPI specification
connect logo

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

Ask AI
  • Open in ChatGPT
  • Open in Claude

  • View as Markdown
  • Copy as Markdown
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"
  }
]