Hivepath API (1.0.0)

Download OpenAPI specification:Download

E-mail: [email protected]

Documentation for the Hivepath route optimisation API. We currently have a single endpoint /optimisation that allows you to request an optimised solution for a given list of vehicles and jobs.

  • Authorisation is performed as a header parameter apiKey using the api key requested from us

  • The optional geometry query parameter allows requests to toggle on/off fetching additional geometry data. Turning this off will improve response times

  • All response durations are in seconds

  • All response distances are in meters

Route optimisation endpoint

Route optimisation endpoint

Authorizations:
ApiKeyAuth
query Parameters
geometry
boolean
Default: true
Request Body schema: application/json
Array of objects (OptimisationRequestVehicle)
Array of objects (OptimisationRequestJob)

Responses

Request samples

Content type
application/json
{
  • "vehicles": [
    ],
  • "jobs": [
    ]
}

Response samples

Content type
application/json
{
  • "routes": [
    ],
  • "statusCode": "INPUT_ERROR",
  • "statusMessage": "string",
  • "unassigned": [
    ]
}