Product detail

GET /product-detail

This endpoint allows you to retreive detailed information about a specific product using it's slug.

Headers

Header
Type
Description

Authorization

string

Bearer token.

Query parameters

Parameter
Type
Description

slug

string

The unique identifier of the product you want to retrieve.

Response

{
  "status": "success",
    "product": {
        "name": "New Balance Men's Fresh Foam 3000 v7 Turf Baseball Shoes - Red - T3000TR7",
        "price": "94.99",
        "brand": "New Balance",
        "description": "Baseball-specific performance features and precision cushioning deliver comfort and confidence.",
        "images": [
            "https://cdn.shopify.com/image1.jpg",
            "https://cdn.shopify.com/image2.jpg"
        ],
        "url": "https://example.com/product"
    }
}

Last updated