AutoCare Attributes#

Retrieve ACES applications and PIES attributes for a part by AAIA brand ID and part number

Service Endpoint#
POST https://api.groupvan.com/v2_1/catalog/autocare

Parameters#

brand_aaia_id string required

The AutoCare (AAIA) brand ID of the part’s brand

part_number string required

The part number to look up. Matched exactly and against the stripped part number (punctuation removed)

Examples#

{
    "brand_aaia_id": "HYVK",
    "part_number": "AW4038"
}

Response#

Response JSON
{
    "brand_aaia_id": "HYVK",
    "part_number": "AW4038",
    "products": [
        {
            "sku": 2150285,
            "part_number": "AW4038",
            "strip_part": "AW4038",
            "mfr_code": "AIR",
            "brand_aaia_id": "HYVK",
            "brand_name": "Airtex Water Pumps",
            "part_type_id": 2208,
            "description": "Engine Water Pump",
            "aces_applications": [
                {
                    "application_id": 900123,
                    "part_terminology_id": 2208,
                    "part_terminology_name": "Water Pump",
                    "base_vehicle_id": 18432,
                    "year_id": 2015,
                    "make_id": 54,
                    "make_name": "Ford",
                    "model_id": 764,
                    "model_name": "F-150",
                    "qualifiers": [
                        {
                            "type": "Engine",
                            "name": "V6 3.5L"
                        }
                    ]
                }
            ],
            "pies_attributes": [
                {
                    "name": "Housing Material",
                    "value": "Aluminum",
                    "sequence": 1
                }
            ],
            "pies_expi_codes": [
                {
                    "code": "CTO",
                    "value": "US"
                }
            ]
        }
    ]
}