curl --request GET \
--url https://api.sibipro.com/products/{sku} \
--header 'Authorization: Bearer <token>'{
"sku": "<string>",
"title": "<string>",
"priceCents": 1,
"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."
]
}Returns product details including available add-ons grouped by aggregate and related products grouped by product group.
curl --request GET \
--url https://api.sibipro.com/products/{sku} \
--header 'Authorization: Bearer <token>'{
"sku": "<string>",
"title": "<string>",
"priceCents": 1,
"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."
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Product SKU
"GDF511PGRBB"
1 - 1001 - 1001 - 1002^\d{5}(-\d{4})?$The manufacturer of the products to search for (defaults to "ge" if not provided)
"ge"
Product details retrieved successfully
x >= 0Available add-ons for the product.
Show child attributes
[
{
"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
}
]
}
]Recommended parts for the product. These parts may be included in an add-on like "Install"
Show child attributes
[
{
"sku": "126",
"title": "Washer Inlet Fill Hose",
"category": "Parts",
"priceCents": 1000
}
]Warnings that may impact product results
[
"No address provided. To include available add-ons and fulfillment/distribution information, please provide an address."
]