> ## 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.

# Dropship

> Wholesale buying and selling

## Overview

Dropship enables a smooth purchase process from start to finish, complete with shipping updates, vehicle tracking, and a hassle-free completion of the transaction at the buyer's preferred location.

***

## The Dropship Experience

To order a vehicle through dropship, follow these steps:

<Steps>
  <Step title="Find a Vehicle">
    The vehicle can be from any dealership. For this example, let's say you found a 2023 Toyota
    Highlander on Carvana's website.
  </Step>

  <Step title="Secure Financing">
    Complete Drivly's [Credit Application](/services/finance-&-insurance/credit-application) to secure financing.

    <Accordion title="Credit Request Example">
      ```json theme={null}
      {
        "sendTo": "RouteOne",
        "state": "DRAFT",
        "environment": "Production",
        "applicationType": "REFINANCE",
        "financeAmount": 32990,
        "downPayment": 5000,
        "preApproval": "edf7b9c04bcbtb2ujk",
        "primaryApplicant": {
          "firstName": "Danny",
          "lastName": "Turner",
          "birthDate": "06/24/1995",
          "emailAddress": "dannyt@gmail.com",
          "cellPhone": "561-555-1212",
          "ssn": "555-55-5555",
          "currentResidence": {
            "monthlyPaymentAmount": 3000,
            "monthsAtResidence": 36,
            "ownershipStatus": "OWN",
            "address": {
              "lineOne": "123 Ocean Drive",
              "lineTwo": "Apt 2",
              "city": "Juno Beach",
              "state": "FL",
              "postalCode": "33408"
            }
          },
          "currentEmployment": {
            "yearlyIncomeAmount": 100000,
            "monthsAtEmployer": 48,
            "employmentType": "FULL_TIME",
            "employerName": "Loggerhead Marine Life Center",
            "employmentPosition": "Marine Biologist",
            "employmentAddress": {
              "lineOne": "14200 US-1",
              "lineTwo": "Suite 100",
              "city": "Juno Beach",
              "state": "FL",
              "postalCode": "33408"
            }
          },
          "terms": {
            "agreeToTerms": true,
            "agreeIP": "150.80.15.220",
            "agreeUserAgent": "Mozilla/5.0"
          }
        },
        "hasCoApplicant": false,
        "vehicle": {
          "vin": "5TDKDRAH4PS505388",
          "year": 2023,
          "make": "Toyota",
          "model": "Highlander",
          "trim": "LE Sport Utility 4D",
          "mileage": 21181,
          "lien": null
        }
      }
      ```
    </Accordion>
  </Step>

  <Step title="Add F&I Products">
    Add F\&I products to your order. For example, you can add a Vehicle Service Contract (VSC) to your order.

    <Accordion title="VSC Example">
      ```json theme={null}
      {
        "type": "Vehicle Service Contract",
        "vin": "WP0AF2A99KS165242",
        "package": "Better"
      }
      ```

      The response will include the price of the contract and the coverage details.

      ```json theme={null}
      {
        "id": "quote_vsc_9p3BcG",
        "status": "pending",
        "estimatedTime": "2024-01-02T15:30:00Z",
        "checkoutLink": "https://checkout.driv.ly/quote_vsc_9p3BcG",
        "paid": false,
        "total": 1000,
        "items": [
          {
            "type": "Vehicle Service Contract",
            "package": "Better",
            "price": 1000,
            "name": "Vehicle Service Contract - Better",
            "description": "Extended warranty with comprehensive coverage",
            "quantity": 1
          }
        ]
      }
      ```
    </Accordion>
  </Step>

  <Step title="Complete the Purchase">
    Once you have secured financing and added F\&I products, you can complete the purchase. The vehicle will be shipped to your preferred location.
  </Step>
</Steps>
