...
List of brands
Request structure
Required
No
Optional
offset
limit
Request example
...
name - Brand Name
id - Brand ID
logo - Brand Logo (optional, if present)
Response example
Code Block |
---|
{ "data": [ { "id": 1, "name": "Wheel Brand 1", "logo": "https://somecatalogapi.com/uploads/brand/a62696697df65760b3477bf4e025d81b6e409bc0.png" }, { "id": 2, "name": "Wheel Brand 2", "logo": "https://somecatalogapi.com/uploads/brand/a62696697df65760b1234bf4e025d81b6e503ac2.png" } ], "meta": { "count": 2, "total": 1000, "offset": 0, "limit": 100 } } |
...
List of models
Request structure
Required
brand_id
Optional
offset
limit
Request example
...
List of wheels
Request structure
Required
brand_id
model_id
Optional, but preferred
offset
limit
Request example
...
brand_id - Brand ID
model_id - Model ID
upc - UPC
part_number - Part number
wheel_width - Width (inches)
wheel_diameter - Diameter (inches)
et - ET (Offset) (mm)
pcd_1 - Main PCD (mm)
pcd_2 - Additional PCD (optional, if present)
pcd_3 - Additional PCD (optional, if present)
bore_min - Minimum Centre Bore (mm) (optional, if present)
bore_max - Max Centre Bore (mm)
colour - Colour
min_wheel_load - Minimum Wheel Load (kg) (optional, if present)
wheel_load - Wheel Load (kg)
images - List of available Wheel images (angle type - required)
weight - Wheel Weight (kg)
shipping_weight - Shipping Wheel Weight (kg) (optional, if present)
material - Wheel Material
Response example
...