{
    "data": {
        "id": 1,
        "sku": "1356284",
        "description": "Red Shirt",
        "category": "Clothing",
        "price": 55.71,
        "length": 6,
        "width": 11,
        "height": 3,
        "weight": 2,
        "returnable": true,
        "created_at": "2024-12-09 22:49:57",
        "updated_at": "2024-12-09 22:49:57"
    }
}

Overview

This endpoint can be used to retrieve a product. Endpoint: /api/v1/products/{product_id} Method: GET

URL Parameters

product_id
integer
required
The ID of the product that you wish to .

Response

If the product is successfully retrieved, the API will return a 200 OK status code. The response will contain the following content:
data
array
required
An array containing a single Product object.
{
    "data": {
        "id": 1,
        "sku": "1356284",
        "description": "Red Shirt",
        "category": "Clothing",
        "price": 55.71,
        "length": 6,
        "width": 11,
        "height": 3,
        "weight": 2,
        "returnable": true,
        "created_at": "2024-12-09 22:49:57",
        "updated_at": "2024-12-09 22:49:57"
    }
}