Get product detail
Products & Kits: Browse the global product catalog and reusable kit templates used when creating quotes.
Endpoint1 params
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
idpath | UUID | yes | Product ID |
javascript
const response = await fetch(`https://api.quipteams.com/api/v1/products/${id}`, {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
},
});
const { data } = await response.json();
console.log(data);Response
json
{
"data": {
"id": "8f3d8998-6a80-4612-bda3-7f14af50c686",
"product_type": "Laptop",
"brand": "Apple",
"model": "MacBook Air",
"image_url": null,
"is_active": true,
"configurations": [
{
"id": "4eaac576-886f-445b-8e9b-9e2165da5120",
"cpu": "M4",
"ram": "16GB",
"storage": "256GB",
"screen_size": "13"
},
{
"id": "d748b47f-b4de-4a02-8fc4-1d815923392c",
"cpu": "M4",
"ram": "16GB",
"storage": "512GB",
"screen_size": "13"
},
{
"id": "c82c6120-ff8b-48a0-8f09-084b7ba02224",
"cpu": "M4",
"ram": "16GB",
"storage": "512GB",
"screen_size": "15"
},
{
"id": "79444add-d685-46b7-8bb5-769155e78948",
"cpu": "M4",
"ram": "24GB",
"storage": "512GB",
"screen_size": "13"
},
{
"id": "0ada956f-a3ba-4fa1-b3c6-a36a8b1a7d1f",
"cpu": "M4",
"ram": "24GB",
"storage": "1TB",
"screen_size": "15"
}
]
}
}