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

# Sell

> Inventory management, listing, and pricing

## Overview

Sell is a feature that enables customers to list and sell vehicles securely. This feature streamlines the vehicle sales process, providing a comprehensive solution for users to create listings and get instant firm offers.

***

## The Sell Experience

To sell a vehicle, follow these steps:

<Steps>
  <Step title="Get Instant Offers">
    To get instant offers, provide the vehicle identification number (VIN) of the vehicle you want to sell.

    ```json Example Request theme={null}
    {
      "vin": "5TDKDRAH4PS501521"
    }
    ```

    ```json Offer Response theme={null}
    {
      "vin": "5TDKDRAH4PS501521",
      "year": 2023,
      "make": "Toyota",
      "model": "Highlander",
      "mileage": 11338,
      "carvanaPrice": 34000,
      "carmaxPrice": 33780,
      "drivewayPrice": 34100
    }
    ```
  </Step>

  <Step title="List a Vehicle">
    To list a vehicle, provide the vehicle identification number (VIN) of the vehicle to be listed.

    ```json Example Request theme={null}
    {
      "vin": "5TDKDRAH4PS501521",
      "price": 34000
    }
    ```
  </Step>

  <Step title="Complete the Sale">
    If you accept an offer, the buyer will contact you to schedule a vehicle inspection and complete the sale.
  </Step>
</Steps>
