Skip to content
SIBISIBI Developers
Esc
navigateopen⌘Jpreview

Get product details with available add-ons (deprecated)

Deprecated. Use GET /products?searchTerm={sku} instead: pass the SKU as searchTerm, add supplier when you know it, and supply the same address query parameters to include pricing and add-ons. The search returns a page of matches, so when you want exactly one product, select the item whose sku equals the SKU you searched for and treat an empty items array as not found. Every field of this response is available on the search item (priceCents, addOns, recommendedParts), alongside availability, warranties, dimensions, and fulfillment methods that this endpoint never returned. Successful responses from this endpoint carry a Deprecation: true header.

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

GET/{sku}deprecated
Authorization
AuthorizationBearer token · headerrequired
API token from the SIBI developer dashboard (developer.sibipro.com), sent as `Authorization: Bearer <token>`.
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
titlestringrequireddeprecated
Deprecated — use `name` instead.
namestringrequired
The product name.
descriptionstringrequired
Free-text product description. Completeness varies by manufacturer — may be empty, a single word, or a full paragraph.
shortDescriptionstringrequired
A compact spec/dimension/material line. May be an empty string when the catalog has none for this product.
imageUrlsstring[]required
URLs of the product images, if any.
priceCentsnumberrequired
min 0
addOnsobject[]required
Available add-ons for the product.
Show properties
Array of object
idstringrequired
titlestringrequireddeprecated
Deprecated — use `name` instead.
namestringrequired
The add-on group name.
priceCentsnumber
min 0
productsobject[]required
Show properties
Array of object
skustringrequired
titlestringrequireddeprecated
Deprecated — use `name` instead.
namestringrequired
The product name.
categorystringrequired
priceCentsnumberrequired
min 0
includedPartProductsobject[]
Show properties
Array of object
skustringrequired
titlestringrequireddeprecated
Deprecated — use `name` instead.
namestringrequired
The product name.
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
titlestringrequireddeprecated
Deprecated — use `name` instead.
namestringrequired
The product name.
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
403Forbidden - the token was minted for the other environment, is not a Public REST API token, or does not carry the scope this operation requires
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
503Service unavailable - the token-exchange service could not be reached; retry the request
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" \
  -H "Authorization: Bearer YOUR_TOKEN"
Response
{
  "sku": "string",
  "title": "string",
  "name": "string",
  "description": "string",
  "shortDescription": "string",
  "imageUrls": [
    "string"
  ],
  "priceCents": 0,
  "addOns": [
    {
      "id": "123",
      "title": "Install",
      "name": "Install",
      "priceCents": 10000,
      "products": [
        {
          "sku": "123",
          "title": "Install Appliance",
          "name": "Install Appliance",
          "category": "Install & Supply Services",
          "priceCents": 6000
        },
        {
          "sku": "124",
          "title": "Supply Washer Braided Line",
          "name": "Supply Washer Braided Line",
          "category": "Install & Supply Services",
          "priceCents": 4000
        }
      ],
      "includedPartProducts": [
        {
          "sku": "125",
          "title": "Washer Inlet Fill Hose",
          "name": "Washer Inlet Fill Hose",
          "category": "Parts",
          "priceCents": 1000
        }
      ]
    }
  ],
  "recommendedParts": [
    {
      "sku": "126",
      "title": "Washer Inlet Fill Hose",
      "name": "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."
  ]
}