Get details of single vehicle

Get details of sin­gle exist­ing vehi­cle.

Authorization and access

Autho­riza­tion process is described here. Each API request must also con­sist of unique Api-key obtained dur­ing appli­ca­tion reg­is­tra­tion togeth­er with client_id and client_secret.

Url parameters and connection settings

  • URL: https://api.platform.trans.eu
  • End­point: /ext/fleet-api/v1/vehicles/{id} (id eg. “207fcf0e-3afc-4d6f-b4d2-bbe772e82199”)
  • Http Method: GET

Headers

  • Accept: application/json
  • Con­tent-type: application/json
  • Autho­riza­tion: Bear­er {access_token}
  • Api-key: {unique_ap­p_api-key}

Example response

{
    "country": "pl",
    "id": 45101,
    "kind": "lorry",
    "manufacturer": "VOLVO",
    "model": "F10",
    "name": null,
    "registration_plate_number": "D0000000",
    "specifications": {
        "adr_classes": [
            "adr_1",
            "adr_1_2"
        ],
        "axle_amount": 4,
        "cargo_space_capacity": 24,
        "cargo_space_height": 2.05,
        "cargo_space_length": 5,
        "cargo_space_volume": 21,
        "cargo_space_width": 2.05,
        "combustion_level": 25,
        "combustion_norm": "EURO 6",
        "date_of_first_registration": null,
        "engine_capacity": 1900,
        "equipments": [
            "gps",
            "lift",
            "adr"
        ],
        "fuel_type": null,
        "pallets": {
            "amount": 5,
            "type": "europalette"
        },
        "permissible_axle_load": 5,
        "permissible_total_weight": 20,
        "permissible_trailer_weight": 15,
        "vehicle_height": 3,
        "vehicle_length": 6,
        "vehicle_width": 4,
        "ways_of_loading": [
            "top",
            "side"
        ],
        "year_of_production": 2018
    },
    "status": "ACTIVE",
    "subtype": "food-tanker",
    "type": "tanker",
    "vehicle_id": "207fcf0e-3afc-4d6f-b4d2-bbe772e82199",
    "vin": "123456789101112"
}