Specifications
2/7/25Less than 1 minute
Description
The Specifications API provides a list of available product specifications that can be used to categorize and filter products effectively.
Endpoint
GET /v1/specifications
Required Headers
No authentication is required for this request.
Example API Call (Fetch or Axios)
fetch('https://api.shopsynch.com/v1/specifications', {
method: 'GET'
})
.then(response => response.json())
.then(data => console.log(data));
📤 Sample 200 Response (Success)
{
"data": [
{
"id": "679e8caa72d06732223ab68b",
"name": "Brand",
"slug": "brand",
"description": null
},
{
"id": "679e8caa72d06732223ab68c",
"name": "Model",
"slug": "model",
"description": null
},
{
"id": "679e8caa72d06732223ab68d",
"name": "Color",
"slug": "color",
"description": null
},
{
"id": "679e8caa72d06732223ab68e",
"name": "Weight",
"slug": "weight",
"description": null
}
],
"message": "All specifications",
"status": true
}