Get all operators

GET /route-optimizer/api/external/operators

Retrieves all operators known to Routescanner with their internal identifier and Standard Carrier Alpha Code (SCAC).
⚠️ This API is only accessible after explicit access has been granted. If you wish to gain access, please contact us at support@routescanner.com.

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • id string(uuid)
    • name string
    • scac string | null
  • 403

    Forbidden, provided credentials are not valid.

  • 401

    Unauthorized, missing credentials.

  • 500

    Something went wrong on the Routescanner server.

GET /route-optimizer/api/external/operators
curl \
 --request GET 'https://connect.routescanner.com/route-optimizer/api/external/operators'
Response examples (200)
{
  "id": "string",
  "name": "string",
  "scac": "string"
}