hvac_search

Get Brand Details

Retrieve detailed information for a specific brand, including its series.

get/hvac/brands/{brand_id}

Path parameters

brand_idstring uuid required

Response

Successful Response

name_idstring required
namestring required
bucketstring nullable
logo_bucket_pathstring nullable
series_countinteger nullable
idstring uuid required
created_atstring date-time required
updated_atstring date-time nullable
logo_urlstring uri nullable

Full URL to the logo, constructed by backend

Example response

{
  "name_id": "carrier",
  "name": "Carrier",
  "bucket": "noso-training-data",
  "logo_bucket_path": "havc/brands/carrier/logo.png",
  "series_count": 10,
  "series": [
    {
      "name_id": "infinity_series",
      "name": "Infinity Series",
      "bucket": "noso-training-data",
      "bucket_path": "havc/brands/carrier/series/infinity/series_image.jpg",
      "models": [
        {
          "model_id": "24ABC636A003",
          "model": "Performance 16 AC",
          "model_notes": "26 Tons, 230V, 1Ph, R-22",
          "functional_parts_count": 50,
          "bucket": "noso-training-data",
          "logo_bucket_path": "havc/brand/logos/carrier_logo.png",
          "image_bucket_path": "havc/model/images/24ABC636A003.jpg",
          "call_group_tags": [
            "residential",
            "split_system"
          ],
          "calling_groups": "Commercial Package Unit",
          "unlocked": true,
          "manuals": [
            {
              "name_id": "installation_guide_rev_a",
              "bucket": "noso-training-data",
              "bucket_path": "havc/brands/carrier/series/123/models/XYZ/manuals/install_guide.pdf",
              "type": "installation_manual",
              "description": "Installation guide for model XYZ",
              "preview_image_bucket_path": "havc/brands/carrier/manuals/preview.png",
              "total_pages": 120
            }
          ],
          "parts": {
            "total_parts": 15,
            "parts": [
              {
                "id": "815B48A6-6F8C-4F9D-9D6B-84E758876F9D",
                "number": "8216026",
                "type": "motor",
                "subtype": "condenser_motor",
                "description": "Condenser Fan Motor",
                "brand": "Carrier",
                "image_bucket_path": "havc/parts/images/part_image.png",
                "subcategory": "Condenser Motor 1/10HP",
                "replacements_count": 2
              }
            ]
          }
        }
      ]
    }
  ]
}

Changes