> For the complete documentation index, see [llms.txt](https://docs.gem-suite.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.gem-suite.com/api-reference/resources/vehicles/inspections.md).

# Inspections

## List all vehicle inspections

<mark style="color:blue;">`GET`</mark> `https://app.gem-books.com/api/inpsections`

This endpoint allows you to get the list of your vehicle models.&#x20;

#### Headers

| Name                                             | Type   | Description                  |
| ------------------------------------------------ | ------ | ---------------------------- |
| Authentication<mark style="color:red;">\*</mark> | string | Bearer Token                 |
| Accept                                           | string | Should be `application/json` |

{% tabs %}
{% tab title="200: OK " %}

```json
{
  "data": [
    {
      "id": 163,
      "work_order": "251480",
      "date": "2025-08-28",
      "client": "John Q",
      "vehicle": "DODGE JOURNEY SE SE (2014)",
      "system_id": 99999
    },
    {
      "id": 162,
      "work_order": "251467",
      "date": "2025-08-27",
      "client": "John Smith",
      "vehicle": "HONDA CR-V (2018)",
      "system_id": 99999
    },
    {
      "id": 161,
      "work_order": "251467",
      "date": "2025-08-27",
      "client": "Jane Smith",
      "vehicle": "TOYOTA RAV4 (2015)",
      "system_id": 99999
    }
  ],
  "meta": {
    "current_page": 1,
    "last_page": 2,
    "per_page": 100,
    "total": 163
  },
  "success": true
}
```

{% endtab %}
{% endtabs %}

## List a specific vehicle brand

<mark style="color:blue;">`GET`</mark> `https://app.gem-books.com/api/inspections/:id`

This endpoint allows you to get one specific inspection.&#x20;

#### Headers

| Name                                             | Type   | Description                  |
| ------------------------------------------------ | ------ | ---------------------------- |
| Authentication<mark style="color:red;">\*</mark> | string | Bearer Token                 |
| Accept                                           | string | Should be `application/json` |

{% tabs %}
{% tab title="200: OK " %}

```json
  "data": [
    {
      "id": 163,
      "work_order": "251480",
      "date": "2025-08-28",
      "client": "John Q",
      "vehicle": "DODGE JOURNEY SE SE (2014)",
      "system_id": 99999
    }
  ],
  "success": true
}
```

{% endtab %}
{% endtabs %}
