> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mobway.cloud/llms.txt
> Use this file to discover all available pages before exploring further.

# GET vehicle

> Returns information about the vehicles connected to the company.

## Request

##### **Header**

<ParamField body="token" type="string" required="true">
  The bearer token used to authenticate the company.
</ParamField>

## Response

<ResponseField name="company" type="string">
  The company to which the vehicle is connected.
</ResponseField>

<ResponseField name="vin" type="string">
  The Vehicle Identification Number (VIN).
</ResponseField>

<ResponseField name="plate" type="string">
  The vehicle's license plate.
</ResponseField>

<ResponseField name="oem" type="string">
  The vehicle's automaker (OEM).
</ResponseField>

<ResponseField name="model" type="string">
  The vehicle model.
</ResponseField>

<ResponseField name="year" type="number">
  The vehicle year.
</ResponseField>

<ResponseField name="status" type="enum">
  The vehicle's connection status with mobway.

  * If "active", the vehicle is connected and sending data.
</ResponseField>

<ResponseField name="created" type="datetime">
  Indicates when the vehicle connection with mobway was created.
</ResponseField>

<RequestExample>
  ```bash Request theme={null}
  curl --request GET \
    --url https://api.mobway.cloud/vehicle \
    --header 'Authorization: Bearer <token>'
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  [
  	{
  		"company": "mobway",
  		"vin": "8DMBK45KGIC435803",
  		"plate": "TBUJ740",
  		"oem": "OEM 1",
  		"model": "Modelo 1",
  		"year": 2021,
  		"status": "active",
  		"created": "2021-04-20T12:42:44",
  	},
  	{
  		"company": "mobway",
  		"vin": "8DMBK45KGIC435804",
  		"plate": "TBUJ741",
  		"oem": "OEM 2",
  		"model": "Modelo 2",
  		"year": 2021,
  		"status": "active",
  		"created": "2021-04-20T12:42:44",
  	}
  ]
  ```
</ResponseExample>
