Api documentation

Api documentation

Spec: Colors and Options

Spec: Colors and Options
 
 
v2 v1
 
 
This resource provides access to vehicle options and colors. Please note that both options and colors are considered a vehicle equipment. For vehicle options, the data returned will always include an array of equipment that exist within each option. The equipment format for colors is different from the typical equipment format. Learn more

Endpoints

Option Categories

Option categories are always one of these values:

  • Interior
  • Exterior
  • Roof
  • Interior Trim
  • Mechanical
  • Package
  • Additional Fees
  • Other

Vehicle Colors

We provide both exterior and interior colors for each vehicle style. A vehicle color is associated with a vehicle style directly and not a vehicle make or model. You need to know the style of the vehicle first before getting a list of available colors. This also applies to options, engines, transmissions and equipment as well.

The colors object format is:

{
	"id": {string},
	"name": {string},
	"equipmentType": "COLOR",
	"manufactureOptionName": {string},
	"manufactureOptionCode": {string},
	"category": {string},
	"colorChips": {
		"primary": {
			"r": {integer},
			"g": {integer},
			"b": {integer},
			"hex": {string}
		},
		"secondary": {
			"r": {integer},
			"g": {integer},
			"b": {integer},
			"hex": {string}
		}
	}
}