hvac_search

Get Series Details

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

get/hvac/series/{series_id}

Path parameters

series_idstring uuid required

Response

Successful Response

name_idstring required
namestring required
brand_idstring uuid required
bucketstring nullable
bucket_pathstring nullable
idstring uuid required
created_atstring date-time required
updated_atstring date-time nullable
image_urlstring uri nullable

Full URL to a representative image, constructed by backend

Example response

{
  "name_id": "infinity_series",
  "name": "Infinity Series",
  "bucket": "noso-training-data",
  "bucket_path": "havc/brands/carrier/series/infinity/series_image.jpg",
  "brand": {
    "name_id": "carrier",
    "name": "Carrier",
    "bucket": "noso-training-data",
    "logo_bucket_path": "havc/brands/carrier/logo.png",
    "series_count": 10
  },
  "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