---
title: "Car details"
method: POST
path: "/cars/details"
tags: ["Cars"]
---

# Car details

`POST /cars/details`

Use this endpoint to fetch car details like bag capacity, number of doors, brand and model, etc.

## Headers

- `X-Affiliate-Id` integer, required

## Request body

- object
  - `last_modified` string, date-time — The last modified date-time, only returns depots newer than this timestamp. The value should be within last 7 days
  - `maximum_results` integer — The maximum number of results to return.
  - `page` string — Pagination token used to retrieve the next page of results. Obtained from `next_page`.

## Response `200`

Successful response.

- object
  - `request_id` string — Uniquely identifies the request. Please provide this identifier when contacting support.
  - `data` object[]
    - `id` integer — Unique car's ID.
    - `capacity` object — Car's capacity
      - `bags` object, nullable — Car's baggage capacity.
        - `large` number — Number of large bags.
        - `small` number — Number of small bags.
      - `doors` string — Number of doors in the car.
      - `seats` string — Number of seats in the car.
    - `features` string[] — List of possible car's features.
    - `image` string — Car's image URL.
    - `make` string — Car's maker/brand.
    - `model` string — Car's model.
    - `specification` object — Car's specification.
      - `code` string — Car's code in [ACRISS Standard](https://www.acriss.org/car-codes/expanded-matrix/).
      - `description` string — Car Description Based on [ACRISS Category and Type](https://www.acriss.org/car-codes/expanded-matrix/).
      - `fuel` 'electric' | 'petrol' | 'plug_in_hybrid' | 'multi_fuel' | 'diesel' | 'hybrid' | 'lpg' | 'hydrogen' | 'ethanol' | 'unspecified' — Car's fuel type.
      - `transmission` 'automatic' | 'manual' — Car's transmission.
    - `supplier` integer — Related supplier id.
  - `metadata` object — Metadata about the request.
    - `next_page` string, nullable — Indicates that more results are available. Use this pagination token to retrieve the next page of results (via parameter `page`).

---

[API](https://skmtc.net/booking/apis/booking-com-demand-api.md) · [All operations](https://skmtc.net/booking/apis/booking-com-demand-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/booking/booking-com-demand-api/revisions/e5f3dccae7ca/schema)
