Skip to content
SIBISIBI Developers
Esc
navigateopen⌘Jpreview

Get product details with available add-ons

Returns product details including available add-ons grouped by aggregate and related products grouped by product group.

GET/{sku}
Path parameters
skustringrequired
Query parameters
line1string
min length 1 · max length 100
line2string
min length 1 · max length 100
citystring
min length 1 · max length 100
stateOrProvincestring
min length 2 · max length 2
postalCodestring
matches ^\d{5}(-\d{4})?$
manufacturerstring
Responses
200Product details retrieved successfully
skustringrequired
titlestringrequired
priceCentsnumberrequired
min 0
addOnsobject[]required
Available add-ons for the product.
Show properties
Array of object
idstringrequired
titlestringrequired
priceCentsnumber
min 0
productsobject[]required
Show properties
Array of object
skustringrequired
titlestringrequired
categorystringrequired
priceCentsnumberrequired
min 0
includedPartProductsobject[]
Show properties
Array of object
skustringrequired
titlestringrequired
categorystringrequired
priceCentsnumberrequired
min 0
recommendedPartsobject[]required
Recommended parts for the product. These parts may be included in an add-on like "Install"
Show properties
Array of object
skustringrequired
titlestringrequired
categorystringrequired
priceCentsnumberrequired
min 0
warningsstring[]
Warnings that may impact product results
400Bad request - Invalid input data
codestringrequired
Error code indicating the type of error
messagestringrequired
Human-readable error message explaining what went wrong
detailsobject[]
Detailed validation errors when applicable
Show properties
Array of object
fieldstringrequired
errorstringrequired
401Unauthorized - Missing or invalid authentication
codestringrequired
Error code indicating the type of error
messagestringrequired
Human-readable error message explaining what went wrong
detailsobject[]
Detailed validation errors when applicable
Show properties
Array of object
fieldstringrequired
errorstringrequired
404Product not found
codestringrequired
Error code indicating the type of error
messagestringrequired
Human-readable error message explaining what went wrong
detailsobject[]
Detailed validation errors when applicable
Show properties
Array of object
fieldstringrequired
errorstringrequired
500Internal server error
codestringrequired
Error code indicating the type of error
messagestringrequired
Human-readable error message explaining what went wrong
detailsobject[]
Detailed validation errors when applicable
Show properties
Array of object
fieldstringrequired
errorstringrequired
Request
curl -X GET "https://api.sibipro.com/products/GDF511PGRBB"
Response
{
  "sku": "string",
  "title": "string",
  "priceCents": 0,
  "addOns": [
    {
      "id": "123",
      "title": "Install",
      "priceCents": 10000,
      "products": [
        {
          "sku": "123",
          "title": "Install Appliance",
          "category": "Install & Supply Services",
          "priceCents": 6000
        },
        {
          "sku": "124",
          "title": "Supply Washer Braided Line",
          "category": "Install & Supply Services",
          "priceCents": 4000
        }
      ],
      "includedPartProducts": [
        {
          "sku": "125",
          "title": "Washer Inlet Fill Hose",
          "category": "Parts",
          "priceCents": 1000
        }
      ]
    }
  ],
  "recommendedParts": [
    {
      "sku": "126",
      "title": "Washer Inlet Fill Hose",
      "category": "Parts",
      "priceCents": 1000
    }
  ],
  "warnings": [
    "No address provided. To include available add-ons and fulfillment/distribution information, please provide an address."
  ]
}