Skip to content

Colors (Exterior)

GET Auth required

Returns exterior color options for vehicles, including color name and RGB values. The demo dataset covers model years 2015–2020. To access the full range from 1900 to today, subscribe and include a valid JWT.

Terminal window
curl "https://carapi.app/api/exterior-colors/v2?year=2024&make=Toyota&model=Camry" \
-H "Authorization: Bearer YOUR_JWT_TOKEN_HERE"
{
"collection": {
"url": "/api/exterior-colors/v2?trim_id=8860",
"count": 8,
"pages": 1,
"total": 8,
"next": "",
"prev": "",
"first": "/api/exterior-colors/v2?trim_id=8860",
"last": ""
},
"data": [
{
"id": 89104,
"make_id": 22,
"model_id": 4779,
"submodel_id": 73504,
"trim_id": 8860,
"year": 2020,
"make": "Toyota",
"model": "Camry",
"series": null,
"submodel": "LE",
"trim": "LE",
"trim_description": "LE 4dr Sedan (2.5L 4cyl 8A)",
"color": "Blue Streak Metallic",
"rgb": "0,62,155"
},
{
"id": 89102,
"make_id": 22,
"model_id": 4779,
"submodel_id": 73504,
"trim_id": 8860,
"year": 2020,
"make": "Toyota",
"model": "Camry",
"series": null,
"submodel": "LE",
"trim": "LE",
"trim_description": "LE 4dr Sedan (2.5L 4cyl 8A)",
"color": "Brownstone",
"rgb": "95,85,71"
}
]
}
Terminal window
curl "https://carapi.app/api/exterior-colors/v2?year=2024&make=Toyota&json=[{\"field\":\"color\",\"op\":\"like\",\"val\":\"%blue%\"}]" \
-H "Authorization: Bearer YOUR_JWT_TOKEN_HERE"

GET /api/exterior-colors Deprecated

Section titled “GET /api/exterior-colors ”

This legacy endpoint uses name instead of color as the field name for color values and supports a verbose=yes parameter to include make, model, and trim. Use /api/exterior-colors/v2 for all new integrations.