Link Search Menu Expand Document

Vehicles

Overview

Vehicle data returned by this endpoint is obfuscated. For example, the number of results is not the same as the actual number of available vehicles, and the position of the pins does not reflect the live position of a vehicle.

Resource

GET /public/vehicles/:cityName

Example Request

curl https://api.mevo.co.nz/public/vehicles/wellington

Response

Status: 200 OK
{
  "type": "geojson",
  "data": {
    "type": "FeatureCollection",
    "features": [
      {
        "type": "Feature",
        "geometry": {
          "type": "Point",
          "coordinates": ["174.821595", "-41.308734"]
        },
        "properties": {
          "iconUrl": "https://assets.mevo.co.nz/../asset.png"
        }
      },
      {...}
    ]
  }
}