Skip to content

Stallion Express API (3.0)

Access to the sandbox environment can be provided upon request. (Not all rates are available in the Sandbox environment). API token can be found under "Account Settings > API Token".

Languages
Servers
Mock server
https://stallionexpress.redocly.app/_mock/stallionexpress-v3
Production server (uses live data)
https://ship.stallionexpress.ca/api/v3
Sandbox server (uses test data)
https://sandbox.stallionexpress.ca/api/v3
Operations
Operations

Request

Gets a list of all current Stallion Express locations.

Security
bearerAuth
curl -i -X GET \
  https://stallionexpress.redocly.app/_mock/stallionexpress-v3/locations \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

Successful operation

Bodyapplication/json
successboolean
Example: true
locationsArray of objects(LocationsResponse_locations)
Example: [null]
Response
application/json
{ "success": true, "locations": [ null ] }
Operations