Skip to main content
GET
/
v1
/
vehicles
List Vehicles
curl --request GET \
  --url https://api.volteras.com/v1/vehicles \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "make": "<string>",
      "vin": "<string>",
      "id": "<string>",
      "metadata": {
        "lastSeenAt": "2023-11-07T05:31:56Z",
        "consentId": "<string>",
        "accountId": "<string>"
      },
      "model": "<string>",
      "trim": "<string>",
      "modelYear": "<string>",
      "registrationPlate": "<string>",
      "isRegNoValidated": true,
      "regNoValidatedAt": "2023-11-07T05:31:56Z",
      "isListening": true,
      "listeningLastUpdated": "2023-11-07T05:31:56Z"
    }
  ],
  "nextPageToken": "<string>",
  "totalResults": 123
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Query Parameters

maxPageSize
integer

Max size of the returned list.

pageToken
string | null

Page token used for pagination.

filter
string | null

Listing filter schema.

tagKey
string | null
tagValue
string | null

Response

200 - application/json

Successful Response

results
Vehicle · object[]
required

Returned data from the listing query.

nextPageToken
string | null
required

Next page token used for pagination.

totalResults
integer
required

Total result count.