Overview

Build enables customers to order and configure a new vehicle with driveway delivery. This feature supports vehicles from direct-to-consumer OEMs like Tesla and Lucid, as well as traditional OEMs like Toyota and Ford.


The Build Experience

To order a New Build, follow these steps:

1

Select the Vehicle

Start by selecting the year, make, model, trim, and style of the vehicle.

{
  "build": {
    "year": 2024,
    "make": "Ford",
    "model": "F-150",
    "trim": "XLT 4WD SuperCrew 5.5' Box",
    "series": "XLT",
    "style": "4D Truck",
    "drivetrain": "4x4",
    "engine": "5L V-8 port/direct injection, DOHC, variable valve control, regular unleaded, engine with 395HP",
    "transmission": "10-speed automatic"
  }
}
2

Select Interior & Exterior Colors

Choose the interior and exterior colors for your new vehicle.

{
  "build": {
    ...
    "interiorColor": {
      "Medium Earth Gray": "#808080"
    },
    "exteriorColor": {
      "Oxford White": "#E7E7E5"
    }
  }
}
3

Configure Options

Select packages and options for your new vehicle.

{
  "build": {
    ...
    "options": {
      "102300-BCA1802302A": "Equipment Group 302A Luxury",
      "61CLCD": "4.2\" Productivity Screen in Instrument Cluster",
      "PWRDRV": "8-Way Power Driver Seat",
      "STDRD": "AM/FM Stereo with 6 Speakers",
      "SYNC3": "SYNC 3",
      "M": "Cloth 40/20/40 Front Seat",
      "BAKLGT": "Fixed Backlight with Privacy Glass",
      "HFRONT": "Heated Front Seats",
      "LTHWHL": "Leather-Wrapped Steering Wheel",
      "54R": "Power Glass Heated Sideview Mirrors",
      "MIRROR": "Auto-Dimming Rearview Mirror",
      "PWRPDL": "Power-Adjustable Pedals",
      "RSEAT": "Rear Under-Seat Storage",
      "57Q": "Rear Window Defroster",
      "99P": "2.7L V6 EcoBoost Engine",
      "X19": "3.55 Axle Ratio",
      "NONGV1": "6,600 lbs Payload Package GVWR",
      "50N": "Voice-Activated Touchscreen Navigation"
    },
    "optionsMsrp": 1290,
    "price": 50758
  }
}
4

Review Price Configuration

Review the price configuration for your new vehicle.


{
  "build": {
    ...
    "salesPrice": 50758,
    "priceWithTaxesAndFees": 56702,
    "totalWithTaxesFeesAndShipping": 58626,
    "taxes": {
      "citySalesTax": 120,
      "combinedSalesTax": 2340,
      "countySalesTax": 60,
      "districtSalesTax": 720,
      "stateSalesTax": 1440,
      "gasGuzzlerTax": 0
    }
  }
}
5

Select Payment Options & Place Order

Select payment options and place your order.

{
  "payment": {
    "paymentMethod": "Finance",
    "paymentAmount": 58626,
    "loanTerm": 60,
    "apr": 3.5,
    "monthlyPayment": 1060,
    "lienholder": "Wells Fargo",
    "accountNumber": "1234567890",
    "routingNumber": "123456789",
    "billingAddress": {
      "street": "123 Main St",
      "city": "Palo Alto",
      "state": "California",
      "zip": "94303"
    },
    "paymentDate": "2024-06-01T12:00:00Z"
  }
}
6

Driveway Delivery

Schedule your driveway delivery.

{
  "delivery": {
    "deliveryDate": "2024-06-15T12:00:00Z",
    "deliveryAddress": {
      "street": "123 Main St",
      "city": "Palo Alto",
      "state": "California",
      "zip": "94303"
    }
  }
}