MENU navbar-image

Introduction

This documentation aims to provide all the information you need to work with our API.

<aside>As you scroll, you'll see code examples for working with the API in different programming languages in the dark area to the right (or as part of the content on mobile).
You can switch the language used with the tabs at the top right (or from the nav menu at the top left on mobile).</aside>

Authenticating requests

This API is not authenticated.

Address

Get list of address by customer

Example request:
curl --request GET \
    --get "https://wowy.botble.com/api/v1/ecommerce/addresses" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://wowy.botble.com/api/v1/ecommerce/addresses"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "error": true,
    "data": null,
    "message": "Unauthenticated."
}
 

Request      

GET api/v1/ecommerce/addresses

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Create new address for customer

requires authentication

Example request:
curl --request POST \
    "https://wowy.botble.com/api/v1/ecommerce/addresses" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"John Doe\",
    \"email\": \"[email protected]\",
    \"phone\": \"0123456789\",
    \"country\": \"United States or US\",
    \"state\": \"California\",
    \"city\": \"Los Angeles\",
    \"address\": \"123 Main St\",
    \"is_default\": true,
    \"zip_code\": \"90001\"
}"
const url = new URL(
    "https://wowy.botble.com/api/v1/ecommerce/addresses"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "name": "John Doe",
    "email": "[email protected]",
    "phone": "0123456789",
    "country": "United States or US",
    "state": "California",
    "city": "Los Angeles",
    "address": "123 Main St",
    "is_default": true,
    "zip_code": "90001"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "error": false,
    "data": {
        "id": 1,
        "name": "John Doe",
        "phone": "0123456789",
        "email": "[email protected]",
        "country": "United States",
        "state": "California",
        "city": "Los Angeles",
        "address": "123 Main St",
        "zip_code": "90001",
        "is_default": true
    },
    "message": null
}
 

Request      

POST api/v1/ecommerce/addresses

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

name   string   

The name of the address owner. Example: John Doe

email   string   

The email address. Example: [email protected]

phone   string   

The phone number. Example: 0123456789

country   string  optional  

The country name or country code. Example: United States or US

state   string  optional  

The state/province name. Example: California

city   string  optional  

The city name. Example: Los Angeles

address   string  optional  

The street address. Example: 123 Main St

is_default   boolean  optional  

Set as default address. Example: true

zip_code   string  optional  

The postal/zip code. Example: 90001

Update an address

requires authentication

Example request:
curl --request PUT \
    "https://wowy.botble.com/api/v1/ecommerce/addresses/1" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"John Doe\",
    \"email\": \"[email protected]\",
    \"phone\": \"0123456789\",
    \"country\": \"United States or US\",
    \"state\": \"California\",
    \"city\": \"Los Angeles\",
    \"address\": \"123 Main St\",
    \"is_default\": true,
    \"zip_code\": \"90001\"
}"
const url = new URL(
    "https://wowy.botble.com/api/v1/ecommerce/addresses/1"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "name": "John Doe",
    "email": "[email protected]",
    "phone": "0123456789",
    "country": "United States or US",
    "state": "California",
    "city": "Los Angeles",
    "address": "123 Main St",
    "is_default": true,
    "zip_code": "90001"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "error": false,
    "data": {
        "id": 1,
        "name": "John Doe",
        "phone": "0123456789",
        "email": "[email protected]",
        "country": "United States",
        "state": "California",
        "city": "Los Angeles",
        "address": "123 Main St",
        "zip_code": "90001",
        "is_default": true
    },
    "message": null
}
 

Request      

PUT api/v1/ecommerce/addresses/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

The ID of the address. Example: 1

Body Parameters

name   string   

The name of the address owner. Example: John Doe

email   string   

The email address. Example: [email protected]

phone   string   

The phone number. Example: 0123456789

country   string  optional  

The country name or country code. Example: United States or US

state   string   

The state/province name. Example: California

city   string   

The city name. Example: Los Angeles

address   string   

The street address. Example: 123 Main St

is_default   boolean  optional  

Set as default address. Example: true

zip_code   string  optional  

The postal/zip code. Example: 90001

Delete an address

requires authentication

Example request:
curl --request DELETE \
    "https://wowy.botble.com/api/v1/ecommerce/addresses/1" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://wowy.botble.com/api/v1/ecommerce/addresses/1"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Example response (200):


{
    "error": false,
    "data": null,
    "message": "Address deleted successfully"
}
 

Request      

DELETE api/v1/ecommerce/addresses/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

The ID of the address. Example: 1

Get list of available countries

Example request:
curl --request GET \
    --get "https://wowy.botble.com/api/v1/ecommerce/countries" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://wowy.botble.com/api/v1/ecommerce/countries"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):


{
    "error": false,
    "data": [
        {
            "name": "Vietnam",
            "code": "VN"
        }
    ],
    "message": null
}
 

Request      

GET api/v1/ecommerce/countries

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Brands

Get list of brands

Example request:
curl --request GET \
    --get "https://wowy.botble.com/api/v1/ecommerce/brands" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"is_featured\": false
}"
const url = new URL(
    "https://wowy.botble.com/api/v1/ecommerce/brands"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "is_featured": false
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "data": [],
    "links": {
        "first": "https://wowy.botble.com/api/v1/ecommerce/brands?page=1",
        "last": "https://wowy.botble.com/api/v1/ecommerce/brands?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": null,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "https://wowy.botble.com/api/v1/ecommerce/brands?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "https://wowy.botble.com/api/v1/ecommerce/brands",
        "per_page": 16,
        "to": null,
        "total": 0
    },
    "error": false,
    "message": null
}
 

Request      

GET api/v1/ecommerce/brands

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

brands   string  optional  

nullable array List of brand IDs if you need filter by brands, (e.g. [1,2,3]).

page   integer  optional  

Page number. Default: 1.

per_page   integer  optional  

Number of items per page. Default: 16.

Body Parameters

brands   string[]  optional  

The id of an existing record in the ec_product_brands table.

is_featured   boolean  optional  

Example: false

Get brand details by slug

Example request:
curl --request GET \
    --get "https://wowy.botble.com/api/v1/ecommerce/brands/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://wowy.botble.com/api/v1/ecommerce/brands/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": ""
}
 

Request      

GET api/v1/ecommerce/brands/{slug}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

slug   string   

The slug of the brand. Example: architecto

Get products by brand

Example request:
curl --request GET \
    --get "https://wowy.botble.com/api/v1/ecommerce/brands/1/products" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://wowy.botble.com/api/v1/ecommerce/brands/1/products"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 22,
            "slug": "black-glasses",
            "name": "Black Glasses",
            "sku": "LW-196-A1",
            "description": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline.</p>\n<p><img alt=\"icon\" src=\"/storage/general/clock.png\" style=\"height:15px;\">  1 Year AL Jazeera Brand Warranty\n</p>\n<p><img alt=\"icon\" src=\"/storage/general/paper-plane.png\" style=\"height:15px;\">   30 Day Return Policy</p>\n<p><img alt=\"icon\" src=\"/storage/general/credit-card.png\" style=\"height:15px;\">  Cash on Delivery available\n</p>\n",
            "content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in\n    cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic\n    silhouette and utilitarian design details.</p>\n<p>- Casual unisex fit</p>\n\n<p>- 64% polyester, 36% polyurethane</p>\n\n<p>- Water column pressure: 4000 mm</p>\n\n<p>- Model is 187cm tall and wearing a size S / M</p>\n\n<p>- Unisex fit</p>\n\n<p>- Drawstring hood with built-in cap</p>\n\n<p>- Front placket with snap buttons</p>\n\n<p>- Ventilation under armpit</p>\n\n<p>- Adjustable cuffs</p>\n\n<p>- Double welted front pockets</p>\n\n<p>- Adjustable elastic string at hempen</p>\n\n<p>- Ultrasonically welded seams</p>\n\n<p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing\n    information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean\n    and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising\n    from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody-\n    but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy\n    days, issuing an invitation to explore even in the most mercurial weather.</p>\n",
            "quantity": 20,
            "is_out_of_stock": false,
            "stock_status_label": "In stock",
            "stock_status_html": "<span class=\"text-success\">In stock</span>",
            "price": 1344,
            "price_formatted": "$1,344.00",
            "original_price": 1344,
            "original_price_formatted": "$1,344.00",
            "reviews_avg": 3.1,
            "reviews_count": 10,
            "image_with_sizes": {
                "origin": [
                    "https://wowy.botble.com/storage/products/22.jpg",
                    "https://wowy.botble.com/storage/products/22-1.jpg"
                ],
                "thumb": [
                    "https://wowy.botble.com/storage/products/22-150x150.jpg",
                    "https://wowy.botble.com/storage/products/22-1-150x150.jpg"
                ],
                "medium": [
                    "https://wowy.botble.com/storage/products/22-800x800.jpg",
                    "https://wowy.botble.com/storage/products/22-1-800x800.jpg"
                ],
                "product-thumb": [
                    "https://wowy.botble.com/storage/products/22-400x400.jpg",
                    "https://wowy.botble.com/storage/products/22-1-400x400.jpg"
                ]
            },
            "weight": 725,
            "height": 16,
            "wide": 18,
            "length": 18,
            "image_url": "https://wowy.botble.com/storage/products/22-150x150.jpg",
            "product_options": []
        },
        {
            "id": 23,
            "slug": "phillips-mouse",
            "name": "Phillips Mouse",
            "sku": "ZS-198-A1",
            "description": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline.</p>\n<p><img alt=\"icon\" src=\"/storage/general/clock.png\" style=\"height:15px;\">  1 Year AL Jazeera Brand Warranty\n</p>\n<p><img alt=\"icon\" src=\"/storage/general/paper-plane.png\" style=\"height:15px;\">   30 Day Return Policy</p>\n<p><img alt=\"icon\" src=\"/storage/general/credit-card.png\" style=\"height:15px;\">  Cash on Delivery available\n</p>\n",
            "content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in\n    cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic\n    silhouette and utilitarian design details.</p>\n<p>- Casual unisex fit</p>\n\n<p>- 64% polyester, 36% polyurethane</p>\n\n<p>- Water column pressure: 4000 mm</p>\n\n<p>- Model is 187cm tall and wearing a size S / M</p>\n\n<p>- Unisex fit</p>\n\n<p>- Drawstring hood with built-in cap</p>\n\n<p>- Front placket with snap buttons</p>\n\n<p>- Ventilation under armpit</p>\n\n<p>- Adjustable cuffs</p>\n\n<p>- Double welted front pockets</p>\n\n<p>- Adjustable elastic string at hempen</p>\n\n<p>- Ultrasonically welded seams</p>\n\n<p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing\n    information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean\n    and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising\n    from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody-\n    but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy\n    days, issuing an invitation to explore even in the most mercurial weather.</p>\n",
            "quantity": 19,
            "is_out_of_stock": false,
            "stock_status_label": "In stock",
            "stock_status_html": "<span class=\"text-success\">In stock</span>",
            "price": 970,
            "price_formatted": "$970.00",
            "original_price": 970,
            "original_price_formatted": "$970.00",
            "reviews_avg": 3.6,
            "reviews_count": 10,
            "image_with_sizes": {
                "origin": [
                    "https://wowy.botble.com/storage/products/23.jpg",
                    "https://wowy.botble.com/storage/products/23-1.jpg"
                ],
                "thumb": [
                    "https://wowy.botble.com/storage/products/23-150x150.jpg",
                    "https://wowy.botble.com/storage/products/23-1-150x150.jpg"
                ],
                "medium": [
                    "https://wowy.botble.com/storage/products/23-800x800.jpg",
                    "https://wowy.botble.com/storage/products/23-1-800x800.jpg"
                ],
                "product-thumb": [
                    "https://wowy.botble.com/storage/products/23-400x400.jpg",
                    "https://wowy.botble.com/storage/products/23-1-400x400.jpg"
                ]
            },
            "weight": 649,
            "height": 20,
            "wide": 14,
            "length": 13,
            "image_url": "https://wowy.botble.com/storage/products/23-150x150.jpg",
            "product_options": []
        },
        {
            "id": 24,
            "slug": "gaming-keyboard-digital",
            "name": "Gaming Keyboard (Digital)",
            "sku": "QW-197-A1",
            "description": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline.</p>\n<p><img alt=\"icon\" src=\"/storage/general/clock.png\" style=\"height:15px;\">  1 Year AL Jazeera Brand Warranty\n</p>\n<p><img alt=\"icon\" src=\"/storage/general/paper-plane.png\" style=\"height:15px;\">   30 Day Return Policy</p>\n<p><img alt=\"icon\" src=\"/storage/general/credit-card.png\" style=\"height:15px;\">  Cash on Delivery available\n</p>\n",
            "content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in\n    cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic\n    silhouette and utilitarian design details.</p>\n<p>- Casual unisex fit</p>\n\n<p>- 64% polyester, 36% polyurethane</p>\n\n<p>- Water column pressure: 4000 mm</p>\n\n<p>- Model is 187cm tall and wearing a size S / M</p>\n\n<p>- Unisex fit</p>\n\n<p>- Drawstring hood with built-in cap</p>\n\n<p>- Front placket with snap buttons</p>\n\n<p>- Ventilation under armpit</p>\n\n<p>- Adjustable cuffs</p>\n\n<p>- Double welted front pockets</p>\n\n<p>- Adjustable elastic string at hempen</p>\n\n<p>- Ultrasonically welded seams</p>\n\n<p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing\n    information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean\n    and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising\n    from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody-\n    but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy\n    days, issuing an invitation to explore even in the most mercurial weather.</p>\n",
            "quantity": 19,
            "is_out_of_stock": false,
            "stock_status_label": "In stock",
            "stock_status_html": "<span class=\"text-success\">In stock</span>",
            "price": 2200.5,
            "price_formatted": "$2,200.50",
            "original_price": 2445,
            "original_price_formatted": "$2,445.00",
            "reviews_avg": 3.8,
            "reviews_count": 10,
            "image_with_sizes": {
                "origin": [
                    "https://wowy.botble.com/storage/products/24.jpg",
                    "https://wowy.botble.com/storage/products/24-1.jpg"
                ],
                "thumb": [
                    "https://wowy.botble.com/storage/products/24-150x150.jpg",
                    "https://wowy.botble.com/storage/products/24-1-150x150.jpg"
                ],
                "medium": [
                    "https://wowy.botble.com/storage/products/24-800x800.jpg",
                    "https://wowy.botble.com/storage/products/24-1-800x800.jpg"
                ],
                "product-thumb": [
                    "https://wowy.botble.com/storage/products/24-400x400.jpg",
                    "https://wowy.botble.com/storage/products/24-1-400x400.jpg"
                ]
            },
            "weight": 561,
            "height": 14,
            "wide": 14,
            "length": 11,
            "image_url": "https://wowy.botble.com/storage/products/24-150x150.jpg",
            "product_options": []
        },
        {
            "id": 1,
            "slug": "smart-home-speaker",
            "name": "Smart Home Speaker",
            "sku": "XZ-100-A1",
            "description": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline.</p>\n<p><img alt=\"icon\" src=\"/storage/general/clock.png\" style=\"height:15px;\">  1 Year AL Jazeera Brand Warranty\n</p>\n<p><img alt=\"icon\" src=\"/storage/general/paper-plane.png\" style=\"height:15px;\">   30 Day Return Policy</p>\n<p><img alt=\"icon\" src=\"/storage/general/credit-card.png\" style=\"height:15px;\">  Cash on Delivery available\n</p>\n",
            "content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in\n    cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic\n    silhouette and utilitarian design details.</p>\n<p>- Casual unisex fit</p>\n\n<p>- 64% polyester, 36% polyurethane</p>\n\n<p>- Water column pressure: 4000 mm</p>\n\n<p>- Model is 187cm tall and wearing a size S / M</p>\n\n<p>- Unisex fit</p>\n\n<p>- Drawstring hood with built-in cap</p>\n\n<p>- Front placket with snap buttons</p>\n\n<p>- Ventilation under armpit</p>\n\n<p>- Adjustable cuffs</p>\n\n<p>- Double welted front pockets</p>\n\n<p>- Adjustable elastic string at hempen</p>\n\n<p>- Ultrasonically welded seams</p>\n\n<p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing\n    information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean\n    and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising\n    from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody-\n    but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy\n    days, issuing an invitation to explore even in the most mercurial weather.</p>\n",
            "quantity": 13,
            "is_out_of_stock": false,
            "stock_status_label": "In stock",
            "stock_status_html": "<span class=\"text-success\">In stock</span>",
            "price": 1480,
            "price_formatted": "$1,480.00",
            "original_price": 1480,
            "original_price_formatted": "$1,480.00",
            "reviews_avg": 3,
            "reviews_count": 10,
            "image_with_sizes": {
                "origin": [
                    "https://wowy.botble.com/storage/products/1.jpg",
                    "https://wowy.botble.com/storage/products/1-1.jpg",
                    "https://wowy.botble.com/storage/products/1-2.jpg",
                    "https://wowy.botble.com/storage/products/1-3.jpg"
                ],
                "thumb": [
                    "https://wowy.botble.com/storage/products/1-150x150.jpg",
                    "https://wowy.botble.com/storage/products/1-1-150x150.jpg",
                    "https://wowy.botble.com/storage/products/1-2-150x150.jpg",
                    "https://wowy.botble.com/storage/products/1-3-150x150.jpg"
                ],
                "medium": [
                    "https://wowy.botble.com/storage/products/1-800x800.jpg",
                    "https://wowy.botble.com/storage/products/1-1-800x800.jpg",
                    "https://wowy.botble.com/storage/products/1-2-800x800.jpg",
                    "https://wowy.botble.com/storage/products/1-3-800x800.jpg"
                ],
                "product-thumb": [
                    "https://wowy.botble.com/storage/products/1-400x400.jpg",
                    "https://wowy.botble.com/storage/products/1-1-400x400.jpg",
                    "https://wowy.botble.com/storage/products/1-2-400x400.jpg",
                    "https://wowy.botble.com/storage/products/1-3-400x400.jpg"
                ]
            },
            "weight": 594,
            "height": 20,
            "wide": 17,
            "length": 16,
            "image_url": "https://wowy.botble.com/storage/products/1-150x150.jpg",
            "product_options": []
        },
        {
            "id": 2,
            "slug": "headphone-ultra-bass",
            "name": "Headphone Ultra Bass",
            "sku": "OB-149",
            "description": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline.</p>\n<p><img alt=\"icon\" src=\"/storage/general/clock.png\" style=\"height:15px;\">  1 Year AL Jazeera Brand Warranty\n</p>\n<p><img alt=\"icon\" src=\"/storage/general/paper-plane.png\" style=\"height:15px;\">   30 Day Return Policy</p>\n<p><img alt=\"icon\" src=\"/storage/general/credit-card.png\" style=\"height:15px;\">  Cash on Delivery available\n</p>\n",
            "content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in\n    cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic\n    silhouette and utilitarian design details.</p>\n<p>- Casual unisex fit</p>\n\n<p>- 64% polyester, 36% polyurethane</p>\n\n<p>- Water column pressure: 4000 mm</p>\n\n<p>- Model is 187cm tall and wearing a size S / M</p>\n\n<p>- Unisex fit</p>\n\n<p>- Drawstring hood with built-in cap</p>\n\n<p>- Front placket with snap buttons</p>\n\n<p>- Ventilation under armpit</p>\n\n<p>- Adjustable cuffs</p>\n\n<p>- Double welted front pockets</p>\n\n<p>- Adjustable elastic string at hempen</p>\n\n<p>- Ultrasonically welded seams</p>\n\n<p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing\n    information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean\n    and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising\n    from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody-\n    but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy\n    days, issuing an invitation to explore even in the most mercurial weather.</p>\n",
            "quantity": 13,
            "is_out_of_stock": false,
            "stock_status_label": "In stock",
            "stock_status_html": "<span class=\"text-success\">In stock</span>",
            "price": 263,
            "price_formatted": "$263.00",
            "original_price": 1057,
            "original_price_formatted": "$1,057.00",
            "reviews_avg": 2.5555555555555554,
            "reviews_count": 9,
            "image_with_sizes": {
                "origin": [
                    "https://wowy.botble.com/storage/products/2.jpg",
                    "https://wowy.botble.com/storage/products/2-1.jpg",
                    "https://wowy.botble.com/storage/products/2-2.jpg",
                    "https://wowy.botble.com/storage/products/2-3.jpg"
                ],
                "thumb": [
                    "https://wowy.botble.com/storage/products/2-150x150.jpg",
                    "https://wowy.botble.com/storage/products/2-1-150x150.jpg",
                    "https://wowy.botble.com/storage/products/2-2-150x150.jpg",
                    "https://wowy.botble.com/storage/products/2-3-150x150.jpg"
                ],
                "medium": [
                    "https://wowy.botble.com/storage/products/2-800x800.jpg",
                    "https://wowy.botble.com/storage/products/2-1-800x800.jpg",
                    "https://wowy.botble.com/storage/products/2-2-800x800.jpg",
                    "https://wowy.botble.com/storage/products/2-3-800x800.jpg"
                ],
                "product-thumb": [
                    "https://wowy.botble.com/storage/products/2-400x400.jpg",
                    "https://wowy.botble.com/storage/products/2-1-400x400.jpg",
                    "https://wowy.botble.com/storage/products/2-2-400x400.jpg",
                    "https://wowy.botble.com/storage/products/2-3-400x400.jpg"
                ]
            },
            "weight": 710,
            "height": 11,
            "wide": 20,
            "length": 15,
            "image_url": "https://wowy.botble.com/storage/products/2-150x150.jpg",
            "product_options": []
        },
        {
            "id": 3,
            "slug": "boxed-bluetooth-headphone",
            "name": "Boxed - Bluetooth Headphone",
            "sku": "PU-111",
            "description": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline.</p>\n<p><img alt=\"icon\" src=\"/storage/general/clock.png\" style=\"height:15px;\">  1 Year AL Jazeera Brand Warranty\n</p>\n<p><img alt=\"icon\" src=\"/storage/general/paper-plane.png\" style=\"height:15px;\">   30 Day Return Policy</p>\n<p><img alt=\"icon\" src=\"/storage/general/credit-card.png\" style=\"height:15px;\">  Cash on Delivery available\n</p>\n",
            "content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in\n    cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic\n    silhouette and utilitarian design details.</p>\n<p>- Casual unisex fit</p>\n\n<p>- 64% polyester, 36% polyurethane</p>\n\n<p>- Water column pressure: 4000 mm</p>\n\n<p>- Model is 187cm tall and wearing a size S / M</p>\n\n<p>- Unisex fit</p>\n\n<p>- Drawstring hood with built-in cap</p>\n\n<p>- Front placket with snap buttons</p>\n\n<p>- Ventilation under armpit</p>\n\n<p>- Adjustable cuffs</p>\n\n<p>- Double welted front pockets</p>\n\n<p>- Adjustable elastic string at hempen</p>\n\n<p>- Ultrasonically welded seams</p>\n\n<p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing\n    information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean\n    and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising\n    from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody-\n    but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy\n    days, issuing an invitation to explore even in the most mercurial weather.</p>\n",
            "quantity": 10,
            "is_out_of_stock": false,
            "stock_status_label": "In stock",
            "stock_status_html": "<span class=\"text-success\">In stock</span>",
            "price": 1429.34,
            "price_formatted": "$1,429.34",
            "original_price": 1910,
            "original_price_formatted": "$1,910.00",
            "reviews_avg": 4,
            "reviews_count": 10,
            "image_with_sizes": {
                "origin": [
                    "https://wowy.botble.com/storage/products/3.jpg",
                    "https://wowy.botble.com/storage/products/3-1.jpg",
                    "https://wowy.botble.com/storage/products/3-2.jpg",
                    "https://wowy.botble.com/storage/products/3-3.jpg"
                ],
                "thumb": [
                    "https://wowy.botble.com/storage/products/3-150x150.jpg",
                    "https://wowy.botble.com/storage/products/3-1-150x150.jpg",
                    "https://wowy.botble.com/storage/products/3-2-150x150.jpg",
                    "https://wowy.botble.com/storage/products/3-3-150x150.jpg"
                ],
                "medium": [
                    "https://wowy.botble.com/storage/products/3-800x800.jpg",
                    "https://wowy.botble.com/storage/products/3-1-800x800.jpg",
                    "https://wowy.botble.com/storage/products/3-2-800x800.jpg",
                    "https://wowy.botble.com/storage/products/3-3-800x800.jpg"
                ],
                "product-thumb": [
                    "https://wowy.botble.com/storage/products/3-400x400.jpg",
                    "https://wowy.botble.com/storage/products/3-1-400x400.jpg",
                    "https://wowy.botble.com/storage/products/3-2-400x400.jpg",
                    "https://wowy.botble.com/storage/products/3-3-400x400.jpg"
                ]
            },
            "weight": 588,
            "height": 11,
            "wide": 17,
            "length": 15,
            "image_url": "https://wowy.botble.com/storage/products/3-150x150.jpg",
            "product_options": []
        },
        {
            "id": 4,
            "slug": "chikie-bluetooth-speaker-digital",
            "name": "Chikie - Bluetooth Speaker (Digital)",
            "sku": "WU-182",
            "description": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline.</p>\n<p><img alt=\"icon\" src=\"/storage/general/clock.png\" style=\"height:15px;\">  1 Year AL Jazeera Brand Warranty\n</p>\n<p><img alt=\"icon\" src=\"/storage/general/paper-plane.png\" style=\"height:15px;\">   30 Day Return Policy</p>\n<p><img alt=\"icon\" src=\"/storage/general/credit-card.png\" style=\"height:15px;\">  Cash on Delivery available\n</p>\n",
            "content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in\n    cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic\n    silhouette and utilitarian design details.</p>\n<p>- Casual unisex fit</p>\n\n<p>- 64% polyester, 36% polyurethane</p>\n\n<p>- Water column pressure: 4000 mm</p>\n\n<p>- Model is 187cm tall and wearing a size S / M</p>\n\n<p>- Unisex fit</p>\n\n<p>- Drawstring hood with built-in cap</p>\n\n<p>- Front placket with snap buttons</p>\n\n<p>- Ventilation under armpit</p>\n\n<p>- Adjustable cuffs</p>\n\n<p>- Double welted front pockets</p>\n\n<p>- Adjustable elastic string at hempen</p>\n\n<p>- Ultrasonically welded seams</p>\n\n<p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing\n    information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean\n    and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising\n    from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody-\n    but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy\n    days, issuing an invitation to explore even in the most mercurial weather.</p>\n",
            "quantity": 12,
            "is_out_of_stock": false,
            "stock_status_label": "In stock",
            "stock_status_html": "<span class=\"text-success\">In stock</span>",
            "price": 1066,
            "price_formatted": "$1,066.00",
            "original_price": 1104,
            "original_price_formatted": "$1,104.00",
            "reviews_avg": 2.8,
            "reviews_count": 10,
            "image_with_sizes": {
                "origin": [
                    "https://wowy.botble.com/storage/products/4.jpg",
                    "https://wowy.botble.com/storage/products/4-1.jpg",
                    "https://wowy.botble.com/storage/products/4-2.jpg",
                    "https://wowy.botble.com/storage/products/4-3.jpg"
                ],
                "thumb": [
                    "https://wowy.botble.com/storage/products/4-150x150.jpg",
                    "https://wowy.botble.com/storage/products/4-1-150x150.jpg",
                    "https://wowy.botble.com/storage/products/4-2-150x150.jpg",
                    "https://wowy.botble.com/storage/products/4-3-150x150.jpg"
                ],
                "medium": [
                    "https://wowy.botble.com/storage/products/4-800x800.jpg",
                    "https://wowy.botble.com/storage/products/4-1-800x800.jpg",
                    "https://wowy.botble.com/storage/products/4-2-800x800.jpg",
                    "https://wowy.botble.com/storage/products/4-3-800x800.jpg"
                ],
                "product-thumb": [
                    "https://wowy.botble.com/storage/products/4-400x400.jpg",
                    "https://wowy.botble.com/storage/products/4-1-400x400.jpg",
                    "https://wowy.botble.com/storage/products/4-2-400x400.jpg",
                    "https://wowy.botble.com/storage/products/4-3-400x400.jpg"
                ]
            },
            "weight": 746,
            "height": 18,
            "wide": 15,
            "length": 16,
            "image_url": "https://wowy.botble.com/storage/products/4-150x150.jpg",
            "product_options": []
        },
        {
            "id": 5,
            "slug": "camera-hikvision-hk-35vs8",
            "name": "Camera Hikvision HK-35VS8",
            "sku": "EK-194-A1",
            "description": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline.</p>\n<p><img alt=\"icon\" src=\"/storage/general/clock.png\" style=\"height:15px;\">  1 Year AL Jazeera Brand Warranty\n</p>\n<p><img alt=\"icon\" src=\"/storage/general/paper-plane.png\" style=\"height:15px;\">   30 Day Return Policy</p>\n<p><img alt=\"icon\" src=\"/storage/general/credit-card.png\" style=\"height:15px;\">  Cash on Delivery available\n</p>\n",
            "content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in\n    cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic\n    silhouette and utilitarian design details.</p>\n<p>- Casual unisex fit</p>\n\n<p>- 64% polyester, 36% polyurethane</p>\n\n<p>- Water column pressure: 4000 mm</p>\n\n<p>- Model is 187cm tall and wearing a size S / M</p>\n\n<p>- Unisex fit</p>\n\n<p>- Drawstring hood with built-in cap</p>\n\n<p>- Front placket with snap buttons</p>\n\n<p>- Ventilation under armpit</p>\n\n<p>- Adjustable cuffs</p>\n\n<p>- Double welted front pockets</p>\n\n<p>- Adjustable elastic string at hempen</p>\n\n<p>- Ultrasonically welded seams</p>\n\n<p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing\n    information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean\n    and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising\n    from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody-\n    but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy\n    days, issuing an invitation to explore even in the most mercurial weather.</p>\n",
            "quantity": 16,
            "is_out_of_stock": false,
            "stock_status_label": "In stock",
            "stock_status_html": "<span class=\"text-success\">In stock</span>",
            "price": 768,
            "price_formatted": "$768.00",
            "original_price": 768,
            "original_price_formatted": "$768.00",
            "reviews_avg": 4.125,
            "reviews_count": 8,
            "image_with_sizes": {
                "origin": [
                    "https://wowy.botble.com/storage/products/5.jpg",
                    "https://wowy.botble.com/storage/products/5-1.jpg",
                    "https://wowy.botble.com/storage/products/5-2.jpg",
                    "https://wowy.botble.com/storage/products/5-3.jpg"
                ],
                "thumb": [
                    "https://wowy.botble.com/storage/products/5-150x150.jpg",
                    "https://wowy.botble.com/storage/products/5-1-150x150.jpg",
                    "https://wowy.botble.com/storage/products/5-2-150x150.jpg",
                    "https://wowy.botble.com/storage/products/5-3-150x150.jpg"
                ],
                "medium": [
                    "https://wowy.botble.com/storage/products/5-800x800.jpg",
                    "https://wowy.botble.com/storage/products/5-1-800x800.jpg",
                    "https://wowy.botble.com/storage/products/5-2-800x800.jpg",
                    "https://wowy.botble.com/storage/products/5-3-800x800.jpg"
                ],
                "product-thumb": [
                    "https://wowy.botble.com/storage/products/5-400x400.jpg",
                    "https://wowy.botble.com/storage/products/5-1-400x400.jpg",
                    "https://wowy.botble.com/storage/products/5-2-400x400.jpg",
                    "https://wowy.botble.com/storage/products/5-3-400x400.jpg"
                ]
            },
            "weight": 829,
            "height": 19,
            "wide": 15,
            "length": 17,
            "image_url": "https://wowy.botble.com/storage/products/5-150x150.jpg",
            "product_options": []
        },
        {
            "id": 6,
            "slug": "camera-samsung-ss-24",
            "name": "Camera Samsung SS-24",
            "sku": "ZU-144",
            "description": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline.</p>\n<p><img alt=\"icon\" src=\"/storage/general/clock.png\" style=\"height:15px;\">  1 Year AL Jazeera Brand Warranty\n</p>\n<p><img alt=\"icon\" src=\"/storage/general/paper-plane.png\" style=\"height:15px;\">   30 Day Return Policy</p>\n<p><img alt=\"icon\" src=\"/storage/general/credit-card.png\" style=\"height:15px;\">  Cash on Delivery available\n</p>\n",
            "content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in\n    cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic\n    silhouette and utilitarian design details.</p>\n<p>- Casual unisex fit</p>\n\n<p>- 64% polyester, 36% polyurethane</p>\n\n<p>- Water column pressure: 4000 mm</p>\n\n<p>- Model is 187cm tall and wearing a size S / M</p>\n\n<p>- Unisex fit</p>\n\n<p>- Drawstring hood with built-in cap</p>\n\n<p>- Front placket with snap buttons</p>\n\n<p>- Ventilation under armpit</p>\n\n<p>- Adjustable cuffs</p>\n\n<p>- Double welted front pockets</p>\n\n<p>- Adjustable elastic string at hempen</p>\n\n<p>- Ultrasonically welded seams</p>\n\n<p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing\n    information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean\n    and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising\n    from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody-\n    but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy\n    days, issuing an invitation to explore even in the most mercurial weather.</p>\n",
            "quantity": 11,
            "is_out_of_stock": false,
            "stock_status_label": "In stock",
            "stock_status_html": "<span class=\"text-success\">In stock</span>",
            "price": 1253,
            "price_formatted": "$1,253.00",
            "original_price": 1938,
            "original_price_formatted": "$1,938.00",
            "reviews_avg": 3.8,
            "reviews_count": 10,
            "image_with_sizes": {
                "origin": [
                    "https://wowy.botble.com/storage/products/6.jpg",
                    "https://wowy.botble.com/storage/products/6-1.jpg"
                ],
                "thumb": [
                    "https://wowy.botble.com/storage/products/6-150x150.jpg",
                    "https://wowy.botble.com/storage/products/6-1-150x150.jpg"
                ],
                "medium": [
                    "https://wowy.botble.com/storage/products/6-800x800.jpg",
                    "https://wowy.botble.com/storage/products/6-1-800x800.jpg"
                ],
                "product-thumb": [
                    "https://wowy.botble.com/storage/products/6-400x400.jpg",
                    "https://wowy.botble.com/storage/products/6-1-400x400.jpg"
                ]
            },
            "weight": 707,
            "height": 10,
            "wide": 11,
            "length": 20,
            "image_url": "https://wowy.botble.com/storage/products/6-150x150.jpg",
            "product_options": []
        },
        {
            "id": 7,
            "slug": "leather-watch-band",
            "name": "Leather Watch Band",
            "sku": "L2-105-A1",
            "description": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline.</p>\n<p><img alt=\"icon\" src=\"/storage/general/clock.png\" style=\"height:15px;\">  1 Year AL Jazeera Brand Warranty\n</p>\n<p><img alt=\"icon\" src=\"/storage/general/paper-plane.png\" style=\"height:15px;\">   30 Day Return Policy</p>\n<p><img alt=\"icon\" src=\"/storage/general/credit-card.png\" style=\"height:15px;\">  Cash on Delivery available\n</p>\n",
            "content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in\n    cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic\n    silhouette and utilitarian design details.</p>\n<p>- Casual unisex fit</p>\n\n<p>- 64% polyester, 36% polyurethane</p>\n\n<p>- Water column pressure: 4000 mm</p>\n\n<p>- Model is 187cm tall and wearing a size S / M</p>\n\n<p>- Unisex fit</p>\n\n<p>- Drawstring hood with built-in cap</p>\n\n<p>- Front placket with snap buttons</p>\n\n<p>- Ventilation under armpit</p>\n\n<p>- Adjustable cuffs</p>\n\n<p>- Double welted front pockets</p>\n\n<p>- Adjustable elastic string at hempen</p>\n\n<p>- Ultrasonically welded seams</p>\n\n<p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing\n    information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean\n    and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising\n    from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody-\n    but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy\n    days, issuing an invitation to explore even in the most mercurial weather.</p>\n",
            "quantity": 12,
            "is_out_of_stock": false,
            "stock_status_label": "In stock",
            "stock_status_html": "<span class=\"text-success\">In stock</span>",
            "price": 2099,
            "price_formatted": "$2,099.00",
            "original_price": 2099,
            "original_price_formatted": "$2,099.00",
            "reviews_avg": 2.7,
            "reviews_count": 10,
            "image_with_sizes": {
                "origin": [
                    "https://wowy.botble.com/storage/products/7.jpg",
                    "https://wowy.botble.com/storage/products/7-1.jpg"
                ],
                "thumb": [
                    "https://wowy.botble.com/storage/products/7-150x150.jpg",
                    "https://wowy.botble.com/storage/products/7-1-150x150.jpg"
                ],
                "medium": [
                    "https://wowy.botble.com/storage/products/7-800x800.jpg",
                    "https://wowy.botble.com/storage/products/7-1-800x800.jpg"
                ],
                "product-thumb": [
                    "https://wowy.botble.com/storage/products/7-400x400.jpg",
                    "https://wowy.botble.com/storage/products/7-1-400x400.jpg"
                ]
            },
            "weight": 889,
            "height": 18,
            "wide": 15,
            "length": 13,
            "image_url": "https://wowy.botble.com/storage/products/7-150x150.jpg",
            "product_options": []
        },
        {
            "id": 8,
            "slug": "apple-iphone-13-plus-digital",
            "name": "Apple iPhone 13 Plus (Digital)",
            "sku": "ZK-197-A1",
            "description": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline.</p>\n<p><img alt=\"icon\" src=\"/storage/general/clock.png\" style=\"height:15px;\">  1 Year AL Jazeera Brand Warranty\n</p>\n<p><img alt=\"icon\" src=\"/storage/general/paper-plane.png\" style=\"height:15px;\">   30 Day Return Policy</p>\n<p><img alt=\"icon\" src=\"/storage/general/credit-card.png\" style=\"height:15px;\">  Cash on Delivery available\n</p>\n",
            "content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in\n    cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic\n    silhouette and utilitarian design details.</p>\n<p>- Casual unisex fit</p>\n\n<p>- 64% polyester, 36% polyurethane</p>\n\n<p>- Water column pressure: 4000 mm</p>\n\n<p>- Model is 187cm tall and wearing a size S / M</p>\n\n<p>- Unisex fit</p>\n\n<p>- Drawstring hood with built-in cap</p>\n\n<p>- Front placket with snap buttons</p>\n\n<p>- Ventilation under armpit</p>\n\n<p>- Adjustable cuffs</p>\n\n<p>- Double welted front pockets</p>\n\n<p>- Adjustable elastic string at hempen</p>\n\n<p>- Ultrasonically welded seams</p>\n\n<p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing\n    information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean\n    and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising\n    from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody-\n    but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy\n    days, issuing an invitation to explore even in the most mercurial weather.</p>\n",
            "quantity": 16,
            "is_out_of_stock": false,
            "stock_status_label": "In stock",
            "stock_status_html": "<span class=\"text-success\">In stock</span>",
            "price": 1349.76,
            "price_formatted": "$1,349.76",
            "original_price": 1824,
            "original_price_formatted": "$1,824.00",
            "reviews_avg": 3.2,
            "reviews_count": 10,
            "image_with_sizes": {
                "origin": [
                    "https://wowy.botble.com/storage/products/8.jpg",
                    "https://wowy.botble.com/storage/products/8-1.jpg"
                ],
                "thumb": [
                    "https://wowy.botble.com/storage/products/8-150x150.jpg",
                    "https://wowy.botble.com/storage/products/8-1-150x150.jpg"
                ],
                "medium": [
                    "https://wowy.botble.com/storage/products/8-800x800.jpg",
                    "https://wowy.botble.com/storage/products/8-1-800x800.jpg"
                ],
                "product-thumb": [
                    "https://wowy.botble.com/storage/products/8-400x400.jpg",
                    "https://wowy.botble.com/storage/products/8-1-400x400.jpg"
                ]
            },
            "weight": 770,
            "height": 19,
            "wide": 14,
            "length": 19,
            "image_url": "https://wowy.botble.com/storage/products/8-150x150.jpg",
            "product_options": []
        },
        {
            "id": 9,
            "slug": "macbook-pro-2015",
            "name": "Macbook Pro 2015",
            "sku": "XR-194-A1",
            "description": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline.</p>\n<p><img alt=\"icon\" src=\"/storage/general/clock.png\" style=\"height:15px;\">  1 Year AL Jazeera Brand Warranty\n</p>\n<p><img alt=\"icon\" src=\"/storage/general/paper-plane.png\" style=\"height:15px;\">   30 Day Return Policy</p>\n<p><img alt=\"icon\" src=\"/storage/general/credit-card.png\" style=\"height:15px;\">  Cash on Delivery available\n</p>\n",
            "content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in\n    cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic\n    silhouette and utilitarian design details.</p>\n<p>- Casual unisex fit</p>\n\n<p>- 64% polyester, 36% polyurethane</p>\n\n<p>- Water column pressure: 4000 mm</p>\n\n<p>- Model is 187cm tall and wearing a size S / M</p>\n\n<p>- Unisex fit</p>\n\n<p>- Drawstring hood with built-in cap</p>\n\n<p>- Front placket with snap buttons</p>\n\n<p>- Ventilation under armpit</p>\n\n<p>- Adjustable cuffs</p>\n\n<p>- Double welted front pockets</p>\n\n<p>- Adjustable elastic string at hempen</p>\n\n<p>- Ultrasonically welded seams</p>\n\n<p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing\n    information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean\n    and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising\n    from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody-\n    but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy\n    days, issuing an invitation to explore even in the most mercurial weather.</p>\n",
            "quantity": 10,
            "is_out_of_stock": false,
            "stock_status_label": "In stock",
            "stock_status_html": "<span class=\"text-success\">In stock</span>",
            "price": 785,
            "price_formatted": "$785.00",
            "original_price": 785,
            "original_price_formatted": "$785.00",
            "reviews_avg": 3,
            "reviews_count": 10,
            "image_with_sizes": {
                "origin": [
                    "https://wowy.botble.com/storage/products/9.jpg",
                    "https://wowy.botble.com/storage/products/9-1.jpg"
                ],
                "thumb": [
                    "https://wowy.botble.com/storage/products/9-150x150.jpg",
                    "https://wowy.botble.com/storage/products/9-1-150x150.jpg"
                ],
                "medium": [
                    "https://wowy.botble.com/storage/products/9-800x800.jpg",
                    "https://wowy.botble.com/storage/products/9-1-800x800.jpg"
                ],
                "product-thumb": [
                    "https://wowy.botble.com/storage/products/9-400x400.jpg",
                    "https://wowy.botble.com/storage/products/9-1-400x400.jpg"
                ]
            },
            "weight": 576,
            "height": 14,
            "wide": 18,
            "length": 18,
            "image_url": "https://wowy.botble.com/storage/products/9-150x150.jpg",
            "product_options": []
        }
    ],
    "links": {
        "first": "https://wowy.botble.com/api/v1/ecommerce/brands/1/products?page=1",
        "last": "https://wowy.botble.com/api/v1/ecommerce/brands/1/products?page=2",
        "prev": null,
        "next": "https://wowy.botble.com/api/v1/ecommerce/brands/1/products?page=2"
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 2,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "https://wowy.botble.com/api/v1/ecommerce/brands/1/products?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": "https://wowy.botble.com/api/v1/ecommerce/brands/1/products?page=2",
                "label": "2",
                "active": false
            },
            {
                "url": "https://wowy.botble.com/api/v1/ecommerce/brands/1/products?page=2",
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "https://wowy.botble.com/api/v1/ecommerce/brands/1/products",
        "per_page": 12,
        "to": 12,
        "total": 24
    },
    "error": false,
    "message": null
}
 

Request      

GET api/v1/ecommerce/brands/{id}/products

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

The ID of the brand. Example: 1

Cart

Add product to cart

Example request:
curl --request POST \
    "https://wowy.botble.com/api/v1/ecommerce/cart" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"product_id\": 1,
    \"qty\": 1
}"
const url = new URL(
    "https://wowy.botble.com/api/v1/ecommerce/cart"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "product_id": 1,
    "qty": 1
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/ecommerce/cart

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

product_id   integer   

ID of the product. Example: 1

qty   integer   

Quantity of the product. Default: 1. Example: 1

Update quantity of a product in cart

Example request:
curl --request PUT \
    "https://wowy.botble.com/api/v1/ecommerce/cart/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"product_id\": 1,
    \"qty\": 1
}"
const url = new URL(
    "https://wowy.botble.com/api/v1/ecommerce/cart/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "product_id": 1,
    "qty": 1
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/v1/ecommerce/cart/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the cart. Example: architecto

Body Parameters

product_id   integer   

ID of the product. Example: 1

qty   integer   

Quantity of the product. Example: 1

Remove a cart item by its ID.

Example request:
curl --request DELETE \
    "https://wowy.botble.com/api/v1/ecommerce/cart/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"product_id\": \"architecto\"
}"
const url = new URL(
    "https://wowy.botble.com/api/v1/ecommerce/cart/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "product_id": "architecto"
};

fetch(url, {
    method: "DELETE",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

DELETE api/v1/ecommerce/cart/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the cart. Example: architecto

Body Parameters

product_id   string   

The id of an existing record in the ec_products table. Example: architecto

Get a cart item by id.

Example request:
curl --request GET \
    --get "https://wowy.botble.com/api/v1/ecommerce/cart/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"customer_id\": 1,
    \"id\": \"e70c6c88dae8344b03e39bb147eba66a\"
}"
const url = new URL(
    "https://wowy.botble.com/api/v1/ecommerce/cart/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "customer_id": 1,
    "id": "e70c6c88dae8344b03e39bb147eba66a"
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "id": "architecto",
    "count": 0,
    "total_price": "$0.00",
    "content": []
}
 

Request      

GET api/v1/ecommerce/cart/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the cart. Example: architecto

Body Parameters

customer_id   integer  optional  

is ID of the customer. Example: 1

id   string   

ID of the cart item. Example: e70c6c88dae8344b03e39bb147eba66a

Refresh cart items

Example request:
curl --request POST \
    "https://wowy.botble.com/api/v1/ecommerce/cart/refresh" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"products\": [
        {
            \"product_id\": 1,
            \"quantity\": 1
        }
    ]
}"
const url = new URL(
    "https://wowy.botble.com/api/v1/ecommerce/cart/refresh"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "products": [
        {
            "product_id": 1,
            "quantity": 1
        }
    ]
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/v1/ecommerce/cart/refresh

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

products   string[]   

List of products.

product_id   integer   

The id of an existing record in the ec_products table. Example: 16

quantity   integer   

Must be at least 1. Example: 22

*   object  optional  
product_id   integer   

ID of the product. Example: 1

quantity   integer   

Quantity of the product. Example: 1

Calculate tax for products in cart

Example request:
curl --request POST \
    "https://wowy.botble.com/api/v1/ecommerce/checkout/taxes/calculate" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"products\": [
        {
            \"id\": 1,
            \"quantity\": 2
        }
    ],
    \"country\": \"US\",
    \"state\": \"CA\",
    \"city\": \"Los Angeles\",
    \"zip_code\": \"90001\"
}"
const url = new URL(
    "https://wowy.botble.com/api/v1/ecommerce/checkout/taxes/calculate"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "products": [
        {
            "id": 1,
            "quantity": 2
        }
    ],
    "country": "US",
    "state": "CA",
    "city": "Los Angeles",
    "zip_code": "90001"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "items": [
        {
            "product_id": 1,
            "price": 100,
            "price_formatted": "$100.00",
            "quantity": 2,
            "tax_rate": 10,
            "tax_amount": 20,
            "tax_amount_formatted": "$20.00",
            "subtotal": 200,
            "subtotal_formatted": "$200.00",
            "total": 220,
            "total_formatted": "$220.00"
        }
    ],
    "totals": {
        "sub_total": 200,
        "sub_total_formatted": "$200.00",
        "tax_amount": 20,
        "tax_amount_formatted": "$20.00",
        "total": 220,
        "total_formatted": "$220.00"
    }
}
 

Request      

POST api/v1/ecommerce/checkout/taxes/calculate

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

products   string[]   

List of products.

id   integer   

Product ID. Example: 1

quantity   integer   

Product quantity. Example: 2

country   string  optional  

Country code. Example: US

state   string  optional  

State code. Example: CA

city   string  optional  

City name. Example: Los Angeles

zip_code   string  optional  

ZIP code. Example: 90001

Endpoints

GET api/v1/ecommerce/checkout/cart/{id}

Example request:
curl --request GET \
    --get "https://wowy.botble.com/api/v1/ecommerce/checkout/cart/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://wowy.botble.com/api/v1/ecommerce/checkout/cart/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (302):

Show headers
cache-control: no-cache, private
location: https://wowy.botble.com/checkout/9716a9cc68bb1d1b7878b91c506f40ce
content-type: text/html; charset=utf-8
access-control-allow-origin: *
set-cookie: XSRF-TOKEN=eyJpdiI6IjhEVXc1OExKa0x5TElMS1hsa1pneEE9PSIsInZhbHVlIjoiY1JhNzBieDRrZ0RyZVlIbTBHdHU2a1U4NEZlYVBYVnQyRGtXMWNId0RBbjBIK01VTFVFMGg5dEpjT3paSGNUelJwRmxIOWVXbmF1dUhxelNkbGFmWEtaR0crNFhVQmYwakNRRlhRNmtIdFJZUHBDby9zYU9JR1B1T0VPNzdhSGUiLCJtYWMiOiJjMzc1OGUwOTdiZjkwMWE3NWJkMDNkMGYwMjEyMGJjZWZhZDhlY2E3ODExMzQ0NjRjNTc1ZjcxYjM4MDlhMWYwIiwidGFnIjoiIn0%3D; expires=Tue, 08 Apr 2025 03:56:35 GMT; Max-Age=7200; path=/; secure; samesite=lax; botble_session=eyJpdiI6Im1qblc2WEp1WDh2QW1FM1RTdDF3M2c9PSIsInZhbHVlIjoiK2s0aHNhcWtMaGFNY01xYUFqWWo4N0JSTjJ2dmxRbFd0bFdCV2lmL2puQ0poTkhzRVBtd1FPVmR2VmlSYVFuMTV5VjE1UGkzeGlGelIwbHlIQ0ZkWjA3YnQzMStUN1o3OStBRGlIRTJpSXdLUmFWUEpEWm5SZXFJN255VVJCL3AiLCJtYWMiOiI0MThkY2FiMjY2NDJlYjVlYzFkZDBiY2ExNDU0MTNiOWQ4NzZiMDBmNThkNzc0NDE1YTIxYjgyNDFjMTZmNTEwIiwidGFnIjoiIn0%3D; expires=Tue, 08 Apr 2025 03:56:35 GMT; Max-Age=7200; path=/; secure; httponly; samesite=lax; botble_footprints_cookie=eyJpdiI6InptcC9zVW5DcndnRlVhdFE5LzRXdXc9PSIsInZhbHVlIjoiaTRxeG1qQklFaW94ZDRqTisrb2xFUm9zNG05TlBuMHM1OE9uS2NuKzMxbDM5ZnU0YXZwcVlWM0prb2cwdFJncmZRRlN4eGk3MDEvSXQ4UVUwdW92a2dUTy9GY3dtcGdtZXVVN2ZFeUdQbHpGNzAwQlZXZXNCV2ZhSGNxZ01EOUciLCJtYWMiOiI1NmRjODhiNjA0N2VkZDBkOTE0N2ViNDBiODk1ZmYxZTg4MDlhNjY4NmM2NGIxODQyYjA3NzBlMmYzYTVlMmNlIiwidGFnIjoiIn0%3D; expires=Tue, 02 Jun 2026 01:56:35 GMT; Max-Age=36288000; path=/; secure; httponly; samesite=lax; botble_footprints_cookie_data=eyJpdiI6IjdiZ1p1NGlmeXI5TFl0cVM2NTBvK2c9PSIsInZhbHVlIjoib0s3QnR1ZDJ5VVJSWjMxaWJ3VE16UUxCeTY1RitBOXQyNVZXWjNwWGZ2MUgwNHd2d1hhSit6U3Y5b3N3bzFWR1pSYU9FdzNSQUtkUXVIQ29uS3hZMVNpU3I3VEhOSzh5bDQ4U29EYkk2RmdLQTdZNEJlMkhNU25hKzljZjUybGp5cnpTekxxMXdtZm42K1R4SkpYZk45dzhkbFZURUUxRzJnWk5lRWZEUFI1MUM3S3JMMDhTV25oNExPQXpTMVIzWHo3ZXR6ekJJQmQ0T0lIUkplVnZ1UGVVMHFGNW1RVG01ZWo1VVFPLzlyRTZHNEpqZnFhSXlmbHRSZGZjTmpBR05GaGl2SVRHTmNneE5MMWJkWHhkYW12aGxpVm45Vi9xMHRGalMza2duN1VPSVh2d0JlLzFFRU9KK21jeC9wblFXb3F4ZVFraGEwV2JNbkloVHZMNWpHZkxqQVpnS2xCSkJvR2lDV1RFWW5MZVdTdWhoV0xia2xSaWp5NTUwTWRrT214R1I4TVZFT3lPZG5DOW1RbUJKa2diTjh6WUx5TTNEYm9WaUhoMVNzTnJBOUkrV3hDdXB4VXMxR1ZxbWFyMU0vYlVRcG96bmoySzFhZjYzQkJ6eXd1M3ZtL3doNGtYTGo1M2NKcVU1akFSZHcyV1VqUlFJbnFPeUZOVllndUhjSlpRYWhoc2FHUU9FOFJlWkxhRnlsOVJoa3JhZUt5cStteEZ3bUFwczZvPSIsIm1hYyI6IjY4MjVjNDA5MDM3MmM0NjBkMzdlMWE4ODk4MTUwNjk2MDJiNjJmYjU3MDlkOGMzMjU0MzNkOGE4ZGZjZmIyNGQiLCJ0YWciOiIifQ%3D%3D; expires=Tue, 02 Jun 2026 01:56:35 GMT; Max-Age=36288000; path=/; secure; httponly; samesite=lax
 

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8" />
        <meta http-equiv="refresh" content="0;url='https://wowy.botble.com/checkout/9716a9cc68bb1d1b7878b91c506f40ce'" />

        <title>Redirecting to https://wowy.botble.com/checkout/9716a9cc68bb1d1b7878b91c506f40ce</title>
    </head>
    <body>
        Redirecting to <a href="https://wowy.botble.com/checkout/9716a9cc68bb1d1b7878b91c506f40ce">https://wowy.botble.com/checkout/9716a9cc68bb1d1b7878b91c506f40ce</a>.
    </body>
</html>
 

Request      

GET api/v1/ecommerce/checkout/cart/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the cart. Example: architecto

Orders

Get list of orders by customer

requires authentication

Example request:
curl --request GET \
    --get "https://wowy.botble.com/api/v1/ecommerce/orders" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://wowy.botble.com/api/v1/ecommerce/orders"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "error": true,
    "data": null,
    "message": "Unauthenticated."
}
 

Request      

GET api/v1/ecommerce/orders

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Get order detail

requires authentication

Example request:
curl --request GET \
    --get "https://wowy.botble.com/api/v1/ecommerce/orders/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://wowy.botble.com/api/v1/ecommerce/orders/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (401):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "error": true,
    "data": null,
    "message": "Unauthenticated."
}
 

Request      

GET api/v1/ecommerce/orders/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   string   

The ID of the order. Example: architecto

Product Categories

Get list of product categories

Example request:
curl --request GET \
    --get "https://wowy.botble.com/api/v1/ecommerce/product-categories" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"is_featured\": false
}"
const url = new URL(
    "https://wowy.botble.com/api/v1/ecommerce/product-categories"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "is_featured": false
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 1,
            "name": "Hot Promotions",
            "icon": "far fa-star",
            "icon_image": null,
            "is_featured": 0,
            "parent_id": 0,
            "slug": "hot-promotions",
            "image_with_sizes": null
        },
        {
            "id": 3,
            "name": "Home Audio & Theaters",
            "icon": null,
            "icon_image": null,
            "is_featured": 0,
            "parent_id": 2,
            "slug": "home-audio-theaters",
            "image_with_sizes": null
        },
        {
            "id": 13,
            "name": "Computer & Tablets",
            "icon": null,
            "icon_image": null,
            "is_featured": 0,
            "parent_id": 12,
            "slug": "computer-tablets",
            "image_with_sizes": null
        },
        {
            "id": 21,
            "name": "Drive & Storages",
            "icon": null,
            "icon_image": null,
            "is_featured": 0,
            "parent_id": 20,
            "slug": "drive-storages",
            "image_with_sizes": null
        },
        {
            "id": 4,
            "name": "TV & Videos",
            "icon": null,
            "icon_image": null,
            "is_featured": 0,
            "parent_id": 2,
            "slug": "tv-videos",
            "image_with_sizes": null
        },
        {
            "id": 14,
            "name": "Laptop",
            "icon": null,
            "icon_image": null,
            "is_featured": 0,
            "parent_id": 12,
            "slug": "laptop",
            "image_with_sizes": null
        },
        {
            "id": 22,
            "name": "Gaming Laptop",
            "icon": null,
            "icon_image": null,
            "is_featured": 0,
            "parent_id": 20,
            "slug": "gaming-laptop",
            "image_with_sizes": null
        },
        {
            "id": 5,
            "name": "Camera, Photos & Videos",
            "icon": null,
            "icon_image": null,
            "is_featured": 0,
            "parent_id": 2,
            "slug": "camera-photos-videos",
            "image_with_sizes": null
        },
        {
            "id": 15,
            "name": "Monitors",
            "icon": null,
            "icon_image": null,
            "is_featured": 0,
            "parent_id": 12,
            "slug": "monitors",
            "image_with_sizes": null
        },
        {
            "id": 23,
            "name": "Security & Protection",
            "icon": null,
            "icon_image": null,
            "is_featured": 0,
            "parent_id": 20,
            "slug": "security-protection",
            "image_with_sizes": null
        },
        {
            "id": 6,
            "name": "Cellphones & Accessories",
            "icon": null,
            "icon_image": null,
            "is_featured": 0,
            "parent_id": 2,
            "slug": "cellphones-accessories",
            "image_with_sizes": null
        },
        {
            "id": 16,
            "name": "Computer Components",
            "icon": null,
            "icon_image": null,
            "is_featured": 0,
            "parent_id": 12,
            "slug": "computer-components",
            "image_with_sizes": null
        },
        {
            "id": 24,
            "name": "Accessories",
            "icon": null,
            "icon_image": null,
            "is_featured": 0,
            "parent_id": 20,
            "slug": "accessories",
            "image_with_sizes": null
        },
        {
            "id": 7,
            "name": "Headphones",
            "icon": null,
            "icon_image": null,
            "is_featured": 0,
            "parent_id": 2,
            "slug": "headphones",
            "image_with_sizes": null
        },
        {
            "id": 8,
            "name": "Videos games",
            "icon": null,
            "icon_image": null,
            "is_featured": 0,
            "parent_id": 2,
            "slug": "videos-games",
            "image_with_sizes": null
        },
        {
            "id": 9,
            "name": "Wireless Speakers",
            "icon": null,
            "icon_image": null,
            "is_featured": 0,
            "parent_id": 2,
            "slug": "wireless-speakers",
            "image_with_sizes": null
        },
        {
            "id": 10,
            "name": "Office Electronic",
            "icon": null,
            "icon_image": null,
            "is_featured": 0,
            "parent_id": 2,
            "slug": "office-electronic",
            "image_with_sizes": null
        },
        {
            "id": 26,
            "name": "Babies & Moms",
            "icon": "wowy-font-teddy-bear",
            "icon_image": null,
            "is_featured": 0,
            "parent_id": 0,
            "slug": "babies-moms",
            "image_with_sizes": null
        },
        {
            "id": 27,
            "name": "Sport & Outdoor",
            "icon": "wowy-font-kite",
            "icon_image": null,
            "is_featured": 0,
            "parent_id": 0,
            "slug": "sport-outdoor",
            "image_with_sizes": null
        },
        {
            "id": 28,
            "name": "Books & Office",
            "icon": "far fa-book",
            "icon_image": null,
            "is_featured": 0,
            "parent_id": 0,
            "slug": "books-office",
            "image_with_sizes": null
        },
        {
            "id": 29,
            "name": "Cars & Motorcycles",
            "icon": "far fa-car",
            "icon_image": null,
            "is_featured": 0,
            "parent_id": 0,
            "slug": "cars-motorcycles",
            "image_with_sizes": null
        },
        {
            "id": 30,
            "name": "Home Improvements",
            "icon": "wowy-font-home",
            "icon_image": null,
            "is_featured": 0,
            "parent_id": 0,
            "slug": "home-improvements",
            "image_with_sizes": null
        }
    ],
    "error": false,
    "message": null
}
 

Request      

GET api/v1/ecommerce/product-categories

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

categories   string  optional  

nullable array List of category IDs if you need filter by categories, (e.g. [1,2,3]).

page   integer  optional  

Page number. Default: 1.

per_page   integer  optional  

Number of items per page. Default: 16.

Body Parameters

categories   string[]  optional  

The id of an existing record in the ec_product_categories table.

is_featured   boolean  optional  

Example: false

Get product category details by slug

Example request:
curl --request GET \
    --get "https://wowy.botble.com/api/v1/ecommerce/product-categories/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://wowy.botble.com/api/v1/ecommerce/product-categories/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": ""
}
 

Request      

GET api/v1/ecommerce/product-categories/{slug}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

slug   string   

The slug of the product category. Example: architecto

Get products by category

Example request:
curl --request GET \
    --get "https://wowy.botble.com/api/v1/ecommerce/product-categories/1/products" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://wowy.botble.com/api/v1/ecommerce/product-categories/1/products"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 22,
            "slug": "black-glasses",
            "name": "Black Glasses",
            "sku": "LW-196-A1",
            "description": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline.</p>\n<p><img alt=\"icon\" src=\"/storage/general/clock.png\" style=\"height:15px;\">  1 Year AL Jazeera Brand Warranty\n</p>\n<p><img alt=\"icon\" src=\"/storage/general/paper-plane.png\" style=\"height:15px;\">   30 Day Return Policy</p>\n<p><img alt=\"icon\" src=\"/storage/general/credit-card.png\" style=\"height:15px;\">  Cash on Delivery available\n</p>\n",
            "content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in\n    cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic\n    silhouette and utilitarian design details.</p>\n<p>- Casual unisex fit</p>\n\n<p>- 64% polyester, 36% polyurethane</p>\n\n<p>- Water column pressure: 4000 mm</p>\n\n<p>- Model is 187cm tall and wearing a size S / M</p>\n\n<p>- Unisex fit</p>\n\n<p>- Drawstring hood with built-in cap</p>\n\n<p>- Front placket with snap buttons</p>\n\n<p>- Ventilation under armpit</p>\n\n<p>- Adjustable cuffs</p>\n\n<p>- Double welted front pockets</p>\n\n<p>- Adjustable elastic string at hempen</p>\n\n<p>- Ultrasonically welded seams</p>\n\n<p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing\n    information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean\n    and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising\n    from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody-\n    but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy\n    days, issuing an invitation to explore even in the most mercurial weather.</p>\n",
            "quantity": 20,
            "is_out_of_stock": false,
            "stock_status_label": "In stock",
            "stock_status_html": "<span class=\"text-success\">In stock</span>",
            "price": 1344,
            "price_formatted": "$1,344.00",
            "original_price": 1344,
            "original_price_formatted": "$1,344.00",
            "reviews_avg": 3.1,
            "reviews_count": 10,
            "image_with_sizes": {
                "origin": [
                    "https://wowy.botble.com/storage/products/22.jpg",
                    "https://wowy.botble.com/storage/products/22-1.jpg"
                ],
                "thumb": [
                    "https://wowy.botble.com/storage/products/22-150x150.jpg",
                    "https://wowy.botble.com/storage/products/22-1-150x150.jpg"
                ],
                "medium": [
                    "https://wowy.botble.com/storage/products/22-800x800.jpg",
                    "https://wowy.botble.com/storage/products/22-1-800x800.jpg"
                ],
                "product-thumb": [
                    "https://wowy.botble.com/storage/products/22-400x400.jpg",
                    "https://wowy.botble.com/storage/products/22-1-400x400.jpg"
                ]
            },
            "weight": 725,
            "height": 16,
            "wide": 18,
            "length": 18,
            "image_url": "https://wowy.botble.com/storage/products/22-150x150.jpg",
            "product_options": []
        },
        {
            "id": 23,
            "slug": "phillips-mouse",
            "name": "Phillips Mouse",
            "sku": "ZS-198-A1",
            "description": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline.</p>\n<p><img alt=\"icon\" src=\"/storage/general/clock.png\" style=\"height:15px;\">  1 Year AL Jazeera Brand Warranty\n</p>\n<p><img alt=\"icon\" src=\"/storage/general/paper-plane.png\" style=\"height:15px;\">   30 Day Return Policy</p>\n<p><img alt=\"icon\" src=\"/storage/general/credit-card.png\" style=\"height:15px;\">  Cash on Delivery available\n</p>\n",
            "content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in\n    cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic\n    silhouette and utilitarian design details.</p>\n<p>- Casual unisex fit</p>\n\n<p>- 64% polyester, 36% polyurethane</p>\n\n<p>- Water column pressure: 4000 mm</p>\n\n<p>- Model is 187cm tall and wearing a size S / M</p>\n\n<p>- Unisex fit</p>\n\n<p>- Drawstring hood with built-in cap</p>\n\n<p>- Front placket with snap buttons</p>\n\n<p>- Ventilation under armpit</p>\n\n<p>- Adjustable cuffs</p>\n\n<p>- Double welted front pockets</p>\n\n<p>- Adjustable elastic string at hempen</p>\n\n<p>- Ultrasonically welded seams</p>\n\n<p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing\n    information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean\n    and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising\n    from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody-\n    but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy\n    days, issuing an invitation to explore even in the most mercurial weather.</p>\n",
            "quantity": 19,
            "is_out_of_stock": false,
            "stock_status_label": "In stock",
            "stock_status_html": "<span class=\"text-success\">In stock</span>",
            "price": 970,
            "price_formatted": "$970.00",
            "original_price": 970,
            "original_price_formatted": "$970.00",
            "reviews_avg": 3.6,
            "reviews_count": 10,
            "image_with_sizes": {
                "origin": [
                    "https://wowy.botble.com/storage/products/23.jpg",
                    "https://wowy.botble.com/storage/products/23-1.jpg"
                ],
                "thumb": [
                    "https://wowy.botble.com/storage/products/23-150x150.jpg",
                    "https://wowy.botble.com/storage/products/23-1-150x150.jpg"
                ],
                "medium": [
                    "https://wowy.botble.com/storage/products/23-800x800.jpg",
                    "https://wowy.botble.com/storage/products/23-1-800x800.jpg"
                ],
                "product-thumb": [
                    "https://wowy.botble.com/storage/products/23-400x400.jpg",
                    "https://wowy.botble.com/storage/products/23-1-400x400.jpg"
                ]
            },
            "weight": 649,
            "height": 20,
            "wide": 14,
            "length": 13,
            "image_url": "https://wowy.botble.com/storage/products/23-150x150.jpg",
            "product_options": []
        },
        {
            "id": 24,
            "slug": "gaming-keyboard-digital",
            "name": "Gaming Keyboard (Digital)",
            "sku": "QW-197-A1",
            "description": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline.</p>\n<p><img alt=\"icon\" src=\"/storage/general/clock.png\" style=\"height:15px;\">  1 Year AL Jazeera Brand Warranty\n</p>\n<p><img alt=\"icon\" src=\"/storage/general/paper-plane.png\" style=\"height:15px;\">   30 Day Return Policy</p>\n<p><img alt=\"icon\" src=\"/storage/general/credit-card.png\" style=\"height:15px;\">  Cash on Delivery available\n</p>\n",
            "content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in\n    cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic\n    silhouette and utilitarian design details.</p>\n<p>- Casual unisex fit</p>\n\n<p>- 64% polyester, 36% polyurethane</p>\n\n<p>- Water column pressure: 4000 mm</p>\n\n<p>- Model is 187cm tall and wearing a size S / M</p>\n\n<p>- Unisex fit</p>\n\n<p>- Drawstring hood with built-in cap</p>\n\n<p>- Front placket with snap buttons</p>\n\n<p>- Ventilation under armpit</p>\n\n<p>- Adjustable cuffs</p>\n\n<p>- Double welted front pockets</p>\n\n<p>- Adjustable elastic string at hempen</p>\n\n<p>- Ultrasonically welded seams</p>\n\n<p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing\n    information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean\n    and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising\n    from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody-\n    but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy\n    days, issuing an invitation to explore even in the most mercurial weather.</p>\n",
            "quantity": 19,
            "is_out_of_stock": false,
            "stock_status_label": "In stock",
            "stock_status_html": "<span class=\"text-success\">In stock</span>",
            "price": 2200.5,
            "price_formatted": "$2,200.50",
            "original_price": 2445,
            "original_price_formatted": "$2,445.00",
            "reviews_avg": 3.8,
            "reviews_count": 10,
            "image_with_sizes": {
                "origin": [
                    "https://wowy.botble.com/storage/products/24.jpg",
                    "https://wowy.botble.com/storage/products/24-1.jpg"
                ],
                "thumb": [
                    "https://wowy.botble.com/storage/products/24-150x150.jpg",
                    "https://wowy.botble.com/storage/products/24-1-150x150.jpg"
                ],
                "medium": [
                    "https://wowy.botble.com/storage/products/24-800x800.jpg",
                    "https://wowy.botble.com/storage/products/24-1-800x800.jpg"
                ],
                "product-thumb": [
                    "https://wowy.botble.com/storage/products/24-400x400.jpg",
                    "https://wowy.botble.com/storage/products/24-1-400x400.jpg"
                ]
            },
            "weight": 561,
            "height": 14,
            "wide": 14,
            "length": 11,
            "image_url": "https://wowy.botble.com/storage/products/24-150x150.jpg",
            "product_options": []
        },
        {
            "id": 1,
            "slug": "smart-home-speaker",
            "name": "Smart Home Speaker",
            "sku": "XZ-100-A1",
            "description": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline.</p>\n<p><img alt=\"icon\" src=\"/storage/general/clock.png\" style=\"height:15px;\">  1 Year AL Jazeera Brand Warranty\n</p>\n<p><img alt=\"icon\" src=\"/storage/general/paper-plane.png\" style=\"height:15px;\">   30 Day Return Policy</p>\n<p><img alt=\"icon\" src=\"/storage/general/credit-card.png\" style=\"height:15px;\">  Cash on Delivery available\n</p>\n",
            "content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in\n    cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic\n    silhouette and utilitarian design details.</p>\n<p>- Casual unisex fit</p>\n\n<p>- 64% polyester, 36% polyurethane</p>\n\n<p>- Water column pressure: 4000 mm</p>\n\n<p>- Model is 187cm tall and wearing a size S / M</p>\n\n<p>- Unisex fit</p>\n\n<p>- Drawstring hood with built-in cap</p>\n\n<p>- Front placket with snap buttons</p>\n\n<p>- Ventilation under armpit</p>\n\n<p>- Adjustable cuffs</p>\n\n<p>- Double welted front pockets</p>\n\n<p>- Adjustable elastic string at hempen</p>\n\n<p>- Ultrasonically welded seams</p>\n\n<p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing\n    information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean\n    and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising\n    from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody-\n    but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy\n    days, issuing an invitation to explore even in the most mercurial weather.</p>\n",
            "quantity": 13,
            "is_out_of_stock": false,
            "stock_status_label": "In stock",
            "stock_status_html": "<span class=\"text-success\">In stock</span>",
            "price": 1480,
            "price_formatted": "$1,480.00",
            "original_price": 1480,
            "original_price_formatted": "$1,480.00",
            "reviews_avg": 3,
            "reviews_count": 10,
            "image_with_sizes": {
                "origin": [
                    "https://wowy.botble.com/storage/products/1.jpg",
                    "https://wowy.botble.com/storage/products/1-1.jpg",
                    "https://wowy.botble.com/storage/products/1-2.jpg",
                    "https://wowy.botble.com/storage/products/1-3.jpg"
                ],
                "thumb": [
                    "https://wowy.botble.com/storage/products/1-150x150.jpg",
                    "https://wowy.botble.com/storage/products/1-1-150x150.jpg",
                    "https://wowy.botble.com/storage/products/1-2-150x150.jpg",
                    "https://wowy.botble.com/storage/products/1-3-150x150.jpg"
                ],
                "medium": [
                    "https://wowy.botble.com/storage/products/1-800x800.jpg",
                    "https://wowy.botble.com/storage/products/1-1-800x800.jpg",
                    "https://wowy.botble.com/storage/products/1-2-800x800.jpg",
                    "https://wowy.botble.com/storage/products/1-3-800x800.jpg"
                ],
                "product-thumb": [
                    "https://wowy.botble.com/storage/products/1-400x400.jpg",
                    "https://wowy.botble.com/storage/products/1-1-400x400.jpg",
                    "https://wowy.botble.com/storage/products/1-2-400x400.jpg",
                    "https://wowy.botble.com/storage/products/1-3-400x400.jpg"
                ]
            },
            "weight": 594,
            "height": 20,
            "wide": 17,
            "length": 16,
            "image_url": "https://wowy.botble.com/storage/products/1-150x150.jpg",
            "product_options": []
        },
        {
            "id": 2,
            "slug": "headphone-ultra-bass",
            "name": "Headphone Ultra Bass",
            "sku": "OB-149",
            "description": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline.</p>\n<p><img alt=\"icon\" src=\"/storage/general/clock.png\" style=\"height:15px;\">  1 Year AL Jazeera Brand Warranty\n</p>\n<p><img alt=\"icon\" src=\"/storage/general/paper-plane.png\" style=\"height:15px;\">   30 Day Return Policy</p>\n<p><img alt=\"icon\" src=\"/storage/general/credit-card.png\" style=\"height:15px;\">  Cash on Delivery available\n</p>\n",
            "content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in\n    cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic\n    silhouette and utilitarian design details.</p>\n<p>- Casual unisex fit</p>\n\n<p>- 64% polyester, 36% polyurethane</p>\n\n<p>- Water column pressure: 4000 mm</p>\n\n<p>- Model is 187cm tall and wearing a size S / M</p>\n\n<p>- Unisex fit</p>\n\n<p>- Drawstring hood with built-in cap</p>\n\n<p>- Front placket with snap buttons</p>\n\n<p>- Ventilation under armpit</p>\n\n<p>- Adjustable cuffs</p>\n\n<p>- Double welted front pockets</p>\n\n<p>- Adjustable elastic string at hempen</p>\n\n<p>- Ultrasonically welded seams</p>\n\n<p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing\n    information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean\n    and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising\n    from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody-\n    but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy\n    days, issuing an invitation to explore even in the most mercurial weather.</p>\n",
            "quantity": 13,
            "is_out_of_stock": false,
            "stock_status_label": "In stock",
            "stock_status_html": "<span class=\"text-success\">In stock</span>",
            "price": 263,
            "price_formatted": "$263.00",
            "original_price": 1057,
            "original_price_formatted": "$1,057.00",
            "reviews_avg": 2.5555555555555554,
            "reviews_count": 9,
            "image_with_sizes": {
                "origin": [
                    "https://wowy.botble.com/storage/products/2.jpg",
                    "https://wowy.botble.com/storage/products/2-1.jpg",
                    "https://wowy.botble.com/storage/products/2-2.jpg",
                    "https://wowy.botble.com/storage/products/2-3.jpg"
                ],
                "thumb": [
                    "https://wowy.botble.com/storage/products/2-150x150.jpg",
                    "https://wowy.botble.com/storage/products/2-1-150x150.jpg",
                    "https://wowy.botble.com/storage/products/2-2-150x150.jpg",
                    "https://wowy.botble.com/storage/products/2-3-150x150.jpg"
                ],
                "medium": [
                    "https://wowy.botble.com/storage/products/2-800x800.jpg",
                    "https://wowy.botble.com/storage/products/2-1-800x800.jpg",
                    "https://wowy.botble.com/storage/products/2-2-800x800.jpg",
                    "https://wowy.botble.com/storage/products/2-3-800x800.jpg"
                ],
                "product-thumb": [
                    "https://wowy.botble.com/storage/products/2-400x400.jpg",
                    "https://wowy.botble.com/storage/products/2-1-400x400.jpg",
                    "https://wowy.botble.com/storage/products/2-2-400x400.jpg",
                    "https://wowy.botble.com/storage/products/2-3-400x400.jpg"
                ]
            },
            "weight": 710,
            "height": 11,
            "wide": 20,
            "length": 15,
            "image_url": "https://wowy.botble.com/storage/products/2-150x150.jpg",
            "product_options": []
        },
        {
            "id": 3,
            "slug": "boxed-bluetooth-headphone",
            "name": "Boxed - Bluetooth Headphone",
            "sku": "PU-111",
            "description": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline.</p>\n<p><img alt=\"icon\" src=\"/storage/general/clock.png\" style=\"height:15px;\">  1 Year AL Jazeera Brand Warranty\n</p>\n<p><img alt=\"icon\" src=\"/storage/general/paper-plane.png\" style=\"height:15px;\">   30 Day Return Policy</p>\n<p><img alt=\"icon\" src=\"/storage/general/credit-card.png\" style=\"height:15px;\">  Cash on Delivery available\n</p>\n",
            "content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in\n    cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic\n    silhouette and utilitarian design details.</p>\n<p>- Casual unisex fit</p>\n\n<p>- 64% polyester, 36% polyurethane</p>\n\n<p>- Water column pressure: 4000 mm</p>\n\n<p>- Model is 187cm tall and wearing a size S / M</p>\n\n<p>- Unisex fit</p>\n\n<p>- Drawstring hood with built-in cap</p>\n\n<p>- Front placket with snap buttons</p>\n\n<p>- Ventilation under armpit</p>\n\n<p>- Adjustable cuffs</p>\n\n<p>- Double welted front pockets</p>\n\n<p>- Adjustable elastic string at hempen</p>\n\n<p>- Ultrasonically welded seams</p>\n\n<p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing\n    information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean\n    and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising\n    from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody-\n    but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy\n    days, issuing an invitation to explore even in the most mercurial weather.</p>\n",
            "quantity": 10,
            "is_out_of_stock": false,
            "stock_status_label": "In stock",
            "stock_status_html": "<span class=\"text-success\">In stock</span>",
            "price": 1429.34,
            "price_formatted": "$1,429.34",
            "original_price": 1910,
            "original_price_formatted": "$1,910.00",
            "reviews_avg": 4,
            "reviews_count": 10,
            "image_with_sizes": {
                "origin": [
                    "https://wowy.botble.com/storage/products/3.jpg",
                    "https://wowy.botble.com/storage/products/3-1.jpg",
                    "https://wowy.botble.com/storage/products/3-2.jpg",
                    "https://wowy.botble.com/storage/products/3-3.jpg"
                ],
                "thumb": [
                    "https://wowy.botble.com/storage/products/3-150x150.jpg",
                    "https://wowy.botble.com/storage/products/3-1-150x150.jpg",
                    "https://wowy.botble.com/storage/products/3-2-150x150.jpg",
                    "https://wowy.botble.com/storage/products/3-3-150x150.jpg"
                ],
                "medium": [
                    "https://wowy.botble.com/storage/products/3-800x800.jpg",
                    "https://wowy.botble.com/storage/products/3-1-800x800.jpg",
                    "https://wowy.botble.com/storage/products/3-2-800x800.jpg",
                    "https://wowy.botble.com/storage/products/3-3-800x800.jpg"
                ],
                "product-thumb": [
                    "https://wowy.botble.com/storage/products/3-400x400.jpg",
                    "https://wowy.botble.com/storage/products/3-1-400x400.jpg",
                    "https://wowy.botble.com/storage/products/3-2-400x400.jpg",
                    "https://wowy.botble.com/storage/products/3-3-400x400.jpg"
                ]
            },
            "weight": 588,
            "height": 11,
            "wide": 17,
            "length": 15,
            "image_url": "https://wowy.botble.com/storage/products/3-150x150.jpg",
            "product_options": []
        },
        {
            "id": 4,
            "slug": "chikie-bluetooth-speaker-digital",
            "name": "Chikie - Bluetooth Speaker (Digital)",
            "sku": "WU-182",
            "description": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline.</p>\n<p><img alt=\"icon\" src=\"/storage/general/clock.png\" style=\"height:15px;\">  1 Year AL Jazeera Brand Warranty\n</p>\n<p><img alt=\"icon\" src=\"/storage/general/paper-plane.png\" style=\"height:15px;\">   30 Day Return Policy</p>\n<p><img alt=\"icon\" src=\"/storage/general/credit-card.png\" style=\"height:15px;\">  Cash on Delivery available\n</p>\n",
            "content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in\n    cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic\n    silhouette and utilitarian design details.</p>\n<p>- Casual unisex fit</p>\n\n<p>- 64% polyester, 36% polyurethane</p>\n\n<p>- Water column pressure: 4000 mm</p>\n\n<p>- Model is 187cm tall and wearing a size S / M</p>\n\n<p>- Unisex fit</p>\n\n<p>- Drawstring hood with built-in cap</p>\n\n<p>- Front placket with snap buttons</p>\n\n<p>- Ventilation under armpit</p>\n\n<p>- Adjustable cuffs</p>\n\n<p>- Double welted front pockets</p>\n\n<p>- Adjustable elastic string at hempen</p>\n\n<p>- Ultrasonically welded seams</p>\n\n<p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing\n    information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean\n    and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising\n    from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody-\n    but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy\n    days, issuing an invitation to explore even in the most mercurial weather.</p>\n",
            "quantity": 12,
            "is_out_of_stock": false,
            "stock_status_label": "In stock",
            "stock_status_html": "<span class=\"text-success\">In stock</span>",
            "price": 1066,
            "price_formatted": "$1,066.00",
            "original_price": 1104,
            "original_price_formatted": "$1,104.00",
            "reviews_avg": 2.8,
            "reviews_count": 10,
            "image_with_sizes": {
                "origin": [
                    "https://wowy.botble.com/storage/products/4.jpg",
                    "https://wowy.botble.com/storage/products/4-1.jpg",
                    "https://wowy.botble.com/storage/products/4-2.jpg",
                    "https://wowy.botble.com/storage/products/4-3.jpg"
                ],
                "thumb": [
                    "https://wowy.botble.com/storage/products/4-150x150.jpg",
                    "https://wowy.botble.com/storage/products/4-1-150x150.jpg",
                    "https://wowy.botble.com/storage/products/4-2-150x150.jpg",
                    "https://wowy.botble.com/storage/products/4-3-150x150.jpg"
                ],
                "medium": [
                    "https://wowy.botble.com/storage/products/4-800x800.jpg",
                    "https://wowy.botble.com/storage/products/4-1-800x800.jpg",
                    "https://wowy.botble.com/storage/products/4-2-800x800.jpg",
                    "https://wowy.botble.com/storage/products/4-3-800x800.jpg"
                ],
                "product-thumb": [
                    "https://wowy.botble.com/storage/products/4-400x400.jpg",
                    "https://wowy.botble.com/storage/products/4-1-400x400.jpg",
                    "https://wowy.botble.com/storage/products/4-2-400x400.jpg",
                    "https://wowy.botble.com/storage/products/4-3-400x400.jpg"
                ]
            },
            "weight": 746,
            "height": 18,
            "wide": 15,
            "length": 16,
            "image_url": "https://wowy.botble.com/storage/products/4-150x150.jpg",
            "product_options": []
        },
        {
            "id": 5,
            "slug": "camera-hikvision-hk-35vs8",
            "name": "Camera Hikvision HK-35VS8",
            "sku": "EK-194-A1",
            "description": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline.</p>\n<p><img alt=\"icon\" src=\"/storage/general/clock.png\" style=\"height:15px;\">  1 Year AL Jazeera Brand Warranty\n</p>\n<p><img alt=\"icon\" src=\"/storage/general/paper-plane.png\" style=\"height:15px;\">   30 Day Return Policy</p>\n<p><img alt=\"icon\" src=\"/storage/general/credit-card.png\" style=\"height:15px;\">  Cash on Delivery available\n</p>\n",
            "content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in\n    cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic\n    silhouette and utilitarian design details.</p>\n<p>- Casual unisex fit</p>\n\n<p>- 64% polyester, 36% polyurethane</p>\n\n<p>- Water column pressure: 4000 mm</p>\n\n<p>- Model is 187cm tall and wearing a size S / M</p>\n\n<p>- Unisex fit</p>\n\n<p>- Drawstring hood with built-in cap</p>\n\n<p>- Front placket with snap buttons</p>\n\n<p>- Ventilation under armpit</p>\n\n<p>- Adjustable cuffs</p>\n\n<p>- Double welted front pockets</p>\n\n<p>- Adjustable elastic string at hempen</p>\n\n<p>- Ultrasonically welded seams</p>\n\n<p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing\n    information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean\n    and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising\n    from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody-\n    but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy\n    days, issuing an invitation to explore even in the most mercurial weather.</p>\n",
            "quantity": 16,
            "is_out_of_stock": false,
            "stock_status_label": "In stock",
            "stock_status_html": "<span class=\"text-success\">In stock</span>",
            "price": 768,
            "price_formatted": "$768.00",
            "original_price": 768,
            "original_price_formatted": "$768.00",
            "reviews_avg": 4.125,
            "reviews_count": 8,
            "image_with_sizes": {
                "origin": [
                    "https://wowy.botble.com/storage/products/5.jpg",
                    "https://wowy.botble.com/storage/products/5-1.jpg",
                    "https://wowy.botble.com/storage/products/5-2.jpg",
                    "https://wowy.botble.com/storage/products/5-3.jpg"
                ],
                "thumb": [
                    "https://wowy.botble.com/storage/products/5-150x150.jpg",
                    "https://wowy.botble.com/storage/products/5-1-150x150.jpg",
                    "https://wowy.botble.com/storage/products/5-2-150x150.jpg",
                    "https://wowy.botble.com/storage/products/5-3-150x150.jpg"
                ],
                "medium": [
                    "https://wowy.botble.com/storage/products/5-800x800.jpg",
                    "https://wowy.botble.com/storage/products/5-1-800x800.jpg",
                    "https://wowy.botble.com/storage/products/5-2-800x800.jpg",
                    "https://wowy.botble.com/storage/products/5-3-800x800.jpg"
                ],
                "product-thumb": [
                    "https://wowy.botble.com/storage/products/5-400x400.jpg",
                    "https://wowy.botble.com/storage/products/5-1-400x400.jpg",
                    "https://wowy.botble.com/storage/products/5-2-400x400.jpg",
                    "https://wowy.botble.com/storage/products/5-3-400x400.jpg"
                ]
            },
            "weight": 829,
            "height": 19,
            "wide": 15,
            "length": 17,
            "image_url": "https://wowy.botble.com/storage/products/5-150x150.jpg",
            "product_options": []
        },
        {
            "id": 6,
            "slug": "camera-samsung-ss-24",
            "name": "Camera Samsung SS-24",
            "sku": "ZU-144",
            "description": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline.</p>\n<p><img alt=\"icon\" src=\"/storage/general/clock.png\" style=\"height:15px;\">  1 Year AL Jazeera Brand Warranty\n</p>\n<p><img alt=\"icon\" src=\"/storage/general/paper-plane.png\" style=\"height:15px;\">   30 Day Return Policy</p>\n<p><img alt=\"icon\" src=\"/storage/general/credit-card.png\" style=\"height:15px;\">  Cash on Delivery available\n</p>\n",
            "content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in\n    cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic\n    silhouette and utilitarian design details.</p>\n<p>- Casual unisex fit</p>\n\n<p>- 64% polyester, 36% polyurethane</p>\n\n<p>- Water column pressure: 4000 mm</p>\n\n<p>- Model is 187cm tall and wearing a size S / M</p>\n\n<p>- Unisex fit</p>\n\n<p>- Drawstring hood with built-in cap</p>\n\n<p>- Front placket with snap buttons</p>\n\n<p>- Ventilation under armpit</p>\n\n<p>- Adjustable cuffs</p>\n\n<p>- Double welted front pockets</p>\n\n<p>- Adjustable elastic string at hempen</p>\n\n<p>- Ultrasonically welded seams</p>\n\n<p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing\n    information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean\n    and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising\n    from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody-\n    but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy\n    days, issuing an invitation to explore even in the most mercurial weather.</p>\n",
            "quantity": 11,
            "is_out_of_stock": false,
            "stock_status_label": "In stock",
            "stock_status_html": "<span class=\"text-success\">In stock</span>",
            "price": 1253,
            "price_formatted": "$1,253.00",
            "original_price": 1938,
            "original_price_formatted": "$1,938.00",
            "reviews_avg": 3.8,
            "reviews_count": 10,
            "image_with_sizes": {
                "origin": [
                    "https://wowy.botble.com/storage/products/6.jpg",
                    "https://wowy.botble.com/storage/products/6-1.jpg"
                ],
                "thumb": [
                    "https://wowy.botble.com/storage/products/6-150x150.jpg",
                    "https://wowy.botble.com/storage/products/6-1-150x150.jpg"
                ],
                "medium": [
                    "https://wowy.botble.com/storage/products/6-800x800.jpg",
                    "https://wowy.botble.com/storage/products/6-1-800x800.jpg"
                ],
                "product-thumb": [
                    "https://wowy.botble.com/storage/products/6-400x400.jpg",
                    "https://wowy.botble.com/storage/products/6-1-400x400.jpg"
                ]
            },
            "weight": 707,
            "height": 10,
            "wide": 11,
            "length": 20,
            "image_url": "https://wowy.botble.com/storage/products/6-150x150.jpg",
            "product_options": []
        },
        {
            "id": 7,
            "slug": "leather-watch-band",
            "name": "Leather Watch Band",
            "sku": "L2-105-A1",
            "description": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline.</p>\n<p><img alt=\"icon\" src=\"/storage/general/clock.png\" style=\"height:15px;\">  1 Year AL Jazeera Brand Warranty\n</p>\n<p><img alt=\"icon\" src=\"/storage/general/paper-plane.png\" style=\"height:15px;\">   30 Day Return Policy</p>\n<p><img alt=\"icon\" src=\"/storage/general/credit-card.png\" style=\"height:15px;\">  Cash on Delivery available\n</p>\n",
            "content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in\n    cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic\n    silhouette and utilitarian design details.</p>\n<p>- Casual unisex fit</p>\n\n<p>- 64% polyester, 36% polyurethane</p>\n\n<p>- Water column pressure: 4000 mm</p>\n\n<p>- Model is 187cm tall and wearing a size S / M</p>\n\n<p>- Unisex fit</p>\n\n<p>- Drawstring hood with built-in cap</p>\n\n<p>- Front placket with snap buttons</p>\n\n<p>- Ventilation under armpit</p>\n\n<p>- Adjustable cuffs</p>\n\n<p>- Double welted front pockets</p>\n\n<p>- Adjustable elastic string at hempen</p>\n\n<p>- Ultrasonically welded seams</p>\n\n<p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing\n    information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean\n    and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising\n    from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody-\n    but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy\n    days, issuing an invitation to explore even in the most mercurial weather.</p>\n",
            "quantity": 12,
            "is_out_of_stock": false,
            "stock_status_label": "In stock",
            "stock_status_html": "<span class=\"text-success\">In stock</span>",
            "price": 2099,
            "price_formatted": "$2,099.00",
            "original_price": 2099,
            "original_price_formatted": "$2,099.00",
            "reviews_avg": 2.7,
            "reviews_count": 10,
            "image_with_sizes": {
                "origin": [
                    "https://wowy.botble.com/storage/products/7.jpg",
                    "https://wowy.botble.com/storage/products/7-1.jpg"
                ],
                "thumb": [
                    "https://wowy.botble.com/storage/products/7-150x150.jpg",
                    "https://wowy.botble.com/storage/products/7-1-150x150.jpg"
                ],
                "medium": [
                    "https://wowy.botble.com/storage/products/7-800x800.jpg",
                    "https://wowy.botble.com/storage/products/7-1-800x800.jpg"
                ],
                "product-thumb": [
                    "https://wowy.botble.com/storage/products/7-400x400.jpg",
                    "https://wowy.botble.com/storage/products/7-1-400x400.jpg"
                ]
            },
            "weight": 889,
            "height": 18,
            "wide": 15,
            "length": 13,
            "image_url": "https://wowy.botble.com/storage/products/7-150x150.jpg",
            "product_options": []
        },
        {
            "id": 8,
            "slug": "apple-iphone-13-plus-digital",
            "name": "Apple iPhone 13 Plus (Digital)",
            "sku": "ZK-197-A1",
            "description": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline.</p>\n<p><img alt=\"icon\" src=\"/storage/general/clock.png\" style=\"height:15px;\">  1 Year AL Jazeera Brand Warranty\n</p>\n<p><img alt=\"icon\" src=\"/storage/general/paper-plane.png\" style=\"height:15px;\">   30 Day Return Policy</p>\n<p><img alt=\"icon\" src=\"/storage/general/credit-card.png\" style=\"height:15px;\">  Cash on Delivery available\n</p>\n",
            "content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in\n    cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic\n    silhouette and utilitarian design details.</p>\n<p>- Casual unisex fit</p>\n\n<p>- 64% polyester, 36% polyurethane</p>\n\n<p>- Water column pressure: 4000 mm</p>\n\n<p>- Model is 187cm tall and wearing a size S / M</p>\n\n<p>- Unisex fit</p>\n\n<p>- Drawstring hood with built-in cap</p>\n\n<p>- Front placket with snap buttons</p>\n\n<p>- Ventilation under armpit</p>\n\n<p>- Adjustable cuffs</p>\n\n<p>- Double welted front pockets</p>\n\n<p>- Adjustable elastic string at hempen</p>\n\n<p>- Ultrasonically welded seams</p>\n\n<p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing\n    information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean\n    and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising\n    from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody-\n    but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy\n    days, issuing an invitation to explore even in the most mercurial weather.</p>\n",
            "quantity": 16,
            "is_out_of_stock": false,
            "stock_status_label": "In stock",
            "stock_status_html": "<span class=\"text-success\">In stock</span>",
            "price": 1349.76,
            "price_formatted": "$1,349.76",
            "original_price": 1824,
            "original_price_formatted": "$1,824.00",
            "reviews_avg": 3.2,
            "reviews_count": 10,
            "image_with_sizes": {
                "origin": [
                    "https://wowy.botble.com/storage/products/8.jpg",
                    "https://wowy.botble.com/storage/products/8-1.jpg"
                ],
                "thumb": [
                    "https://wowy.botble.com/storage/products/8-150x150.jpg",
                    "https://wowy.botble.com/storage/products/8-1-150x150.jpg"
                ],
                "medium": [
                    "https://wowy.botble.com/storage/products/8-800x800.jpg",
                    "https://wowy.botble.com/storage/products/8-1-800x800.jpg"
                ],
                "product-thumb": [
                    "https://wowy.botble.com/storage/products/8-400x400.jpg",
                    "https://wowy.botble.com/storage/products/8-1-400x400.jpg"
                ]
            },
            "weight": 770,
            "height": 19,
            "wide": 14,
            "length": 19,
            "image_url": "https://wowy.botble.com/storage/products/8-150x150.jpg",
            "product_options": []
        },
        {
            "id": 9,
            "slug": "macbook-pro-2015",
            "name": "Macbook Pro 2015",
            "sku": "XR-194-A1",
            "description": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline.</p>\n<p><img alt=\"icon\" src=\"/storage/general/clock.png\" style=\"height:15px;\">  1 Year AL Jazeera Brand Warranty\n</p>\n<p><img alt=\"icon\" src=\"/storage/general/paper-plane.png\" style=\"height:15px;\">   30 Day Return Policy</p>\n<p><img alt=\"icon\" src=\"/storage/general/credit-card.png\" style=\"height:15px;\">  Cash on Delivery available\n</p>\n",
            "content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in\n    cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic\n    silhouette and utilitarian design details.</p>\n<p>- Casual unisex fit</p>\n\n<p>- 64% polyester, 36% polyurethane</p>\n\n<p>- Water column pressure: 4000 mm</p>\n\n<p>- Model is 187cm tall and wearing a size S / M</p>\n\n<p>- Unisex fit</p>\n\n<p>- Drawstring hood with built-in cap</p>\n\n<p>- Front placket with snap buttons</p>\n\n<p>- Ventilation under armpit</p>\n\n<p>- Adjustable cuffs</p>\n\n<p>- Double welted front pockets</p>\n\n<p>- Adjustable elastic string at hempen</p>\n\n<p>- Ultrasonically welded seams</p>\n\n<p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing\n    information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean\n    and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising\n    from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody-\n    but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy\n    days, issuing an invitation to explore even in the most mercurial weather.</p>\n",
            "quantity": 10,
            "is_out_of_stock": false,
            "stock_status_label": "In stock",
            "stock_status_html": "<span class=\"text-success\">In stock</span>",
            "price": 785,
            "price_formatted": "$785.00",
            "original_price": 785,
            "original_price_formatted": "$785.00",
            "reviews_avg": 3,
            "reviews_count": 10,
            "image_with_sizes": {
                "origin": [
                    "https://wowy.botble.com/storage/products/9.jpg",
                    "https://wowy.botble.com/storage/products/9-1.jpg"
                ],
                "thumb": [
                    "https://wowy.botble.com/storage/products/9-150x150.jpg",
                    "https://wowy.botble.com/storage/products/9-1-150x150.jpg"
                ],
                "medium": [
                    "https://wowy.botble.com/storage/products/9-800x800.jpg",
                    "https://wowy.botble.com/storage/products/9-1-800x800.jpg"
                ],
                "product-thumb": [
                    "https://wowy.botble.com/storage/products/9-400x400.jpg",
                    "https://wowy.botble.com/storage/products/9-1-400x400.jpg"
                ]
            },
            "weight": 576,
            "height": 14,
            "wide": 18,
            "length": 18,
            "image_url": "https://wowy.botble.com/storage/products/9-150x150.jpg",
            "product_options": []
        }
    ],
    "links": {
        "first": "https://wowy.botble.com/api/v1/ecommerce/product-categories/1/products?page=1",
        "last": "https://wowy.botble.com/api/v1/ecommerce/product-categories/1/products?page=2",
        "prev": null,
        "next": "https://wowy.botble.com/api/v1/ecommerce/product-categories/1/products?page=2"
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 2,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "https://wowy.botble.com/api/v1/ecommerce/product-categories/1/products?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": "https://wowy.botble.com/api/v1/ecommerce/product-categories/1/products?page=2",
                "label": "2",
                "active": false
            },
            {
                "url": "https://wowy.botble.com/api/v1/ecommerce/product-categories/1/products?page=2",
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "https://wowy.botble.com/api/v1/ecommerce/product-categories/1/products",
        "per_page": 12,
        "to": 12,
        "total": 24
    },
    "error": false,
    "message": null
}
 

Request      

GET api/v1/ecommerce/product-categories/{id}/products

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

The ID of the product category. Example: 1

Products

Get list of products

Example request:
curl --request GET \
    --get "https://wowy.botble.com/api/v1/ecommerce/products" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://wowy.botble.com/api/v1/ecommerce/products"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 22,
            "slug": "black-glasses",
            "name": "Black Glasses",
            "sku": "LW-196-A1",
            "description": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline.</p>\n<p><img alt=\"icon\" src=\"/storage/general/clock.png\" style=\"height:15px;\">  1 Year AL Jazeera Brand Warranty\n</p>\n<p><img alt=\"icon\" src=\"/storage/general/paper-plane.png\" style=\"height:15px;\">   30 Day Return Policy</p>\n<p><img alt=\"icon\" src=\"/storage/general/credit-card.png\" style=\"height:15px;\">  Cash on Delivery available\n</p>\n",
            "content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in\n    cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic\n    silhouette and utilitarian design details.</p>\n<p>- Casual unisex fit</p>\n\n<p>- 64% polyester, 36% polyurethane</p>\n\n<p>- Water column pressure: 4000 mm</p>\n\n<p>- Model is 187cm tall and wearing a size S / M</p>\n\n<p>- Unisex fit</p>\n\n<p>- Drawstring hood with built-in cap</p>\n\n<p>- Front placket with snap buttons</p>\n\n<p>- Ventilation under armpit</p>\n\n<p>- Adjustable cuffs</p>\n\n<p>- Double welted front pockets</p>\n\n<p>- Adjustable elastic string at hempen</p>\n\n<p>- Ultrasonically welded seams</p>\n\n<p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing\n    information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean\n    and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising\n    from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody-\n    but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy\n    days, issuing an invitation to explore even in the most mercurial weather.</p>\n",
            "quantity": 20,
            "is_out_of_stock": false,
            "stock_status_label": "In stock",
            "stock_status_html": "<span class=\"text-success\">In stock</span>",
            "price": 1344,
            "price_formatted": "$1,344.00",
            "original_price": 1344,
            "original_price_formatted": "$1,344.00",
            "reviews_avg": 3.1,
            "reviews_count": 10,
            "image_with_sizes": {
                "origin": [
                    "https://wowy.botble.com/storage/products/22.jpg",
                    "https://wowy.botble.com/storage/products/22-1.jpg"
                ],
                "thumb": [
                    "https://wowy.botble.com/storage/products/22-150x150.jpg",
                    "https://wowy.botble.com/storage/products/22-1-150x150.jpg"
                ],
                "medium": [
                    "https://wowy.botble.com/storage/products/22-800x800.jpg",
                    "https://wowy.botble.com/storage/products/22-1-800x800.jpg"
                ],
                "product-thumb": [
                    "https://wowy.botble.com/storage/products/22-400x400.jpg",
                    "https://wowy.botble.com/storage/products/22-1-400x400.jpg"
                ]
            },
            "weight": 725,
            "height": 16,
            "wide": 18,
            "length": 18,
            "image_url": "https://wowy.botble.com/storage/products/22-150x150.jpg",
            "product_options": []
        },
        {
            "id": 23,
            "slug": "phillips-mouse",
            "name": "Phillips Mouse",
            "sku": "ZS-198-A1",
            "description": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline.</p>\n<p><img alt=\"icon\" src=\"/storage/general/clock.png\" style=\"height:15px;\">  1 Year AL Jazeera Brand Warranty\n</p>\n<p><img alt=\"icon\" src=\"/storage/general/paper-plane.png\" style=\"height:15px;\">   30 Day Return Policy</p>\n<p><img alt=\"icon\" src=\"/storage/general/credit-card.png\" style=\"height:15px;\">  Cash on Delivery available\n</p>\n",
            "content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in\n    cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic\n    silhouette and utilitarian design details.</p>\n<p>- Casual unisex fit</p>\n\n<p>- 64% polyester, 36% polyurethane</p>\n\n<p>- Water column pressure: 4000 mm</p>\n\n<p>- Model is 187cm tall and wearing a size S / M</p>\n\n<p>- Unisex fit</p>\n\n<p>- Drawstring hood with built-in cap</p>\n\n<p>- Front placket with snap buttons</p>\n\n<p>- Ventilation under armpit</p>\n\n<p>- Adjustable cuffs</p>\n\n<p>- Double welted front pockets</p>\n\n<p>- Adjustable elastic string at hempen</p>\n\n<p>- Ultrasonically welded seams</p>\n\n<p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing\n    information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean\n    and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising\n    from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody-\n    but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy\n    days, issuing an invitation to explore even in the most mercurial weather.</p>\n",
            "quantity": 19,
            "is_out_of_stock": false,
            "stock_status_label": "In stock",
            "stock_status_html": "<span class=\"text-success\">In stock</span>",
            "price": 970,
            "price_formatted": "$970.00",
            "original_price": 970,
            "original_price_formatted": "$970.00",
            "reviews_avg": 3.6,
            "reviews_count": 10,
            "image_with_sizes": {
                "origin": [
                    "https://wowy.botble.com/storage/products/23.jpg",
                    "https://wowy.botble.com/storage/products/23-1.jpg"
                ],
                "thumb": [
                    "https://wowy.botble.com/storage/products/23-150x150.jpg",
                    "https://wowy.botble.com/storage/products/23-1-150x150.jpg"
                ],
                "medium": [
                    "https://wowy.botble.com/storage/products/23-800x800.jpg",
                    "https://wowy.botble.com/storage/products/23-1-800x800.jpg"
                ],
                "product-thumb": [
                    "https://wowy.botble.com/storage/products/23-400x400.jpg",
                    "https://wowy.botble.com/storage/products/23-1-400x400.jpg"
                ]
            },
            "weight": 649,
            "height": 20,
            "wide": 14,
            "length": 13,
            "image_url": "https://wowy.botble.com/storage/products/23-150x150.jpg",
            "product_options": []
        },
        {
            "id": 24,
            "slug": "gaming-keyboard-digital",
            "name": "Gaming Keyboard (Digital)",
            "sku": "QW-197-A1",
            "description": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline.</p>\n<p><img alt=\"icon\" src=\"/storage/general/clock.png\" style=\"height:15px;\">  1 Year AL Jazeera Brand Warranty\n</p>\n<p><img alt=\"icon\" src=\"/storage/general/paper-plane.png\" style=\"height:15px;\">   30 Day Return Policy</p>\n<p><img alt=\"icon\" src=\"/storage/general/credit-card.png\" style=\"height:15px;\">  Cash on Delivery available\n</p>\n",
            "content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in\n    cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic\n    silhouette and utilitarian design details.</p>\n<p>- Casual unisex fit</p>\n\n<p>- 64% polyester, 36% polyurethane</p>\n\n<p>- Water column pressure: 4000 mm</p>\n\n<p>- Model is 187cm tall and wearing a size S / M</p>\n\n<p>- Unisex fit</p>\n\n<p>- Drawstring hood with built-in cap</p>\n\n<p>- Front placket with snap buttons</p>\n\n<p>- Ventilation under armpit</p>\n\n<p>- Adjustable cuffs</p>\n\n<p>- Double welted front pockets</p>\n\n<p>- Adjustable elastic string at hempen</p>\n\n<p>- Ultrasonically welded seams</p>\n\n<p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing\n    information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean\n    and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising\n    from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody-\n    but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy\n    days, issuing an invitation to explore even in the most mercurial weather.</p>\n",
            "quantity": 19,
            "is_out_of_stock": false,
            "stock_status_label": "In stock",
            "stock_status_html": "<span class=\"text-success\">In stock</span>",
            "price": 2200.5,
            "price_formatted": "$2,200.50",
            "original_price": 2445,
            "original_price_formatted": "$2,445.00",
            "reviews_avg": 3.8,
            "reviews_count": 10,
            "image_with_sizes": {
                "origin": [
                    "https://wowy.botble.com/storage/products/24.jpg",
                    "https://wowy.botble.com/storage/products/24-1.jpg"
                ],
                "thumb": [
                    "https://wowy.botble.com/storage/products/24-150x150.jpg",
                    "https://wowy.botble.com/storage/products/24-1-150x150.jpg"
                ],
                "medium": [
                    "https://wowy.botble.com/storage/products/24-800x800.jpg",
                    "https://wowy.botble.com/storage/products/24-1-800x800.jpg"
                ],
                "product-thumb": [
                    "https://wowy.botble.com/storage/products/24-400x400.jpg",
                    "https://wowy.botble.com/storage/products/24-1-400x400.jpg"
                ]
            },
            "weight": 561,
            "height": 14,
            "wide": 14,
            "length": 11,
            "image_url": "https://wowy.botble.com/storage/products/24-150x150.jpg",
            "product_options": []
        },
        {
            "id": 1,
            "slug": "smart-home-speaker",
            "name": "Smart Home Speaker",
            "sku": "XZ-100-A1",
            "description": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline.</p>\n<p><img alt=\"icon\" src=\"/storage/general/clock.png\" style=\"height:15px;\">  1 Year AL Jazeera Brand Warranty\n</p>\n<p><img alt=\"icon\" src=\"/storage/general/paper-plane.png\" style=\"height:15px;\">   30 Day Return Policy</p>\n<p><img alt=\"icon\" src=\"/storage/general/credit-card.png\" style=\"height:15px;\">  Cash on Delivery available\n</p>\n",
            "content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in\n    cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic\n    silhouette and utilitarian design details.</p>\n<p>- Casual unisex fit</p>\n\n<p>- 64% polyester, 36% polyurethane</p>\n\n<p>- Water column pressure: 4000 mm</p>\n\n<p>- Model is 187cm tall and wearing a size S / M</p>\n\n<p>- Unisex fit</p>\n\n<p>- Drawstring hood with built-in cap</p>\n\n<p>- Front placket with snap buttons</p>\n\n<p>- Ventilation under armpit</p>\n\n<p>- Adjustable cuffs</p>\n\n<p>- Double welted front pockets</p>\n\n<p>- Adjustable elastic string at hempen</p>\n\n<p>- Ultrasonically welded seams</p>\n\n<p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing\n    information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean\n    and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising\n    from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody-\n    but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy\n    days, issuing an invitation to explore even in the most mercurial weather.</p>\n",
            "quantity": 13,
            "is_out_of_stock": false,
            "stock_status_label": "In stock",
            "stock_status_html": "<span class=\"text-success\">In stock</span>",
            "price": 1480,
            "price_formatted": "$1,480.00",
            "original_price": 1480,
            "original_price_formatted": "$1,480.00",
            "reviews_avg": 3,
            "reviews_count": 10,
            "image_with_sizes": {
                "origin": [
                    "https://wowy.botble.com/storage/products/1.jpg",
                    "https://wowy.botble.com/storage/products/1-1.jpg",
                    "https://wowy.botble.com/storage/products/1-2.jpg",
                    "https://wowy.botble.com/storage/products/1-3.jpg"
                ],
                "thumb": [
                    "https://wowy.botble.com/storage/products/1-150x150.jpg",
                    "https://wowy.botble.com/storage/products/1-1-150x150.jpg",
                    "https://wowy.botble.com/storage/products/1-2-150x150.jpg",
                    "https://wowy.botble.com/storage/products/1-3-150x150.jpg"
                ],
                "medium": [
                    "https://wowy.botble.com/storage/products/1-800x800.jpg",
                    "https://wowy.botble.com/storage/products/1-1-800x800.jpg",
                    "https://wowy.botble.com/storage/products/1-2-800x800.jpg",
                    "https://wowy.botble.com/storage/products/1-3-800x800.jpg"
                ],
                "product-thumb": [
                    "https://wowy.botble.com/storage/products/1-400x400.jpg",
                    "https://wowy.botble.com/storage/products/1-1-400x400.jpg",
                    "https://wowy.botble.com/storage/products/1-2-400x400.jpg",
                    "https://wowy.botble.com/storage/products/1-3-400x400.jpg"
                ]
            },
            "weight": 594,
            "height": 20,
            "wide": 17,
            "length": 16,
            "image_url": "https://wowy.botble.com/storage/products/1-150x150.jpg",
            "product_options": []
        },
        {
            "id": 2,
            "slug": "headphone-ultra-bass",
            "name": "Headphone Ultra Bass",
            "sku": "OB-149",
            "description": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline.</p>\n<p><img alt=\"icon\" src=\"/storage/general/clock.png\" style=\"height:15px;\">  1 Year AL Jazeera Brand Warranty\n</p>\n<p><img alt=\"icon\" src=\"/storage/general/paper-plane.png\" style=\"height:15px;\">   30 Day Return Policy</p>\n<p><img alt=\"icon\" src=\"/storage/general/credit-card.png\" style=\"height:15px;\">  Cash on Delivery available\n</p>\n",
            "content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in\n    cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic\n    silhouette and utilitarian design details.</p>\n<p>- Casual unisex fit</p>\n\n<p>- 64% polyester, 36% polyurethane</p>\n\n<p>- Water column pressure: 4000 mm</p>\n\n<p>- Model is 187cm tall and wearing a size S / M</p>\n\n<p>- Unisex fit</p>\n\n<p>- Drawstring hood with built-in cap</p>\n\n<p>- Front placket with snap buttons</p>\n\n<p>- Ventilation under armpit</p>\n\n<p>- Adjustable cuffs</p>\n\n<p>- Double welted front pockets</p>\n\n<p>- Adjustable elastic string at hempen</p>\n\n<p>- Ultrasonically welded seams</p>\n\n<p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing\n    information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean\n    and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising\n    from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody-\n    but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy\n    days, issuing an invitation to explore even in the most mercurial weather.</p>\n",
            "quantity": 13,
            "is_out_of_stock": false,
            "stock_status_label": "In stock",
            "stock_status_html": "<span class=\"text-success\">In stock</span>",
            "price": 263,
            "price_formatted": "$263.00",
            "original_price": 1057,
            "original_price_formatted": "$1,057.00",
            "reviews_avg": 2.5555555555555554,
            "reviews_count": 9,
            "image_with_sizes": {
                "origin": [
                    "https://wowy.botble.com/storage/products/2.jpg",
                    "https://wowy.botble.com/storage/products/2-1.jpg",
                    "https://wowy.botble.com/storage/products/2-2.jpg",
                    "https://wowy.botble.com/storage/products/2-3.jpg"
                ],
                "thumb": [
                    "https://wowy.botble.com/storage/products/2-150x150.jpg",
                    "https://wowy.botble.com/storage/products/2-1-150x150.jpg",
                    "https://wowy.botble.com/storage/products/2-2-150x150.jpg",
                    "https://wowy.botble.com/storage/products/2-3-150x150.jpg"
                ],
                "medium": [
                    "https://wowy.botble.com/storage/products/2-800x800.jpg",
                    "https://wowy.botble.com/storage/products/2-1-800x800.jpg",
                    "https://wowy.botble.com/storage/products/2-2-800x800.jpg",
                    "https://wowy.botble.com/storage/products/2-3-800x800.jpg"
                ],
                "product-thumb": [
                    "https://wowy.botble.com/storage/products/2-400x400.jpg",
                    "https://wowy.botble.com/storage/products/2-1-400x400.jpg",
                    "https://wowy.botble.com/storage/products/2-2-400x400.jpg",
                    "https://wowy.botble.com/storage/products/2-3-400x400.jpg"
                ]
            },
            "weight": 710,
            "height": 11,
            "wide": 20,
            "length": 15,
            "image_url": "https://wowy.botble.com/storage/products/2-150x150.jpg",
            "product_options": []
        },
        {
            "id": 3,
            "slug": "boxed-bluetooth-headphone",
            "name": "Boxed - Bluetooth Headphone",
            "sku": "PU-111",
            "description": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline.</p>\n<p><img alt=\"icon\" src=\"/storage/general/clock.png\" style=\"height:15px;\">  1 Year AL Jazeera Brand Warranty\n</p>\n<p><img alt=\"icon\" src=\"/storage/general/paper-plane.png\" style=\"height:15px;\">   30 Day Return Policy</p>\n<p><img alt=\"icon\" src=\"/storage/general/credit-card.png\" style=\"height:15px;\">  Cash on Delivery available\n</p>\n",
            "content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in\n    cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic\n    silhouette and utilitarian design details.</p>\n<p>- Casual unisex fit</p>\n\n<p>- 64% polyester, 36% polyurethane</p>\n\n<p>- Water column pressure: 4000 mm</p>\n\n<p>- Model is 187cm tall and wearing a size S / M</p>\n\n<p>- Unisex fit</p>\n\n<p>- Drawstring hood with built-in cap</p>\n\n<p>- Front placket with snap buttons</p>\n\n<p>- Ventilation under armpit</p>\n\n<p>- Adjustable cuffs</p>\n\n<p>- Double welted front pockets</p>\n\n<p>- Adjustable elastic string at hempen</p>\n\n<p>- Ultrasonically welded seams</p>\n\n<p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing\n    information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean\n    and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising\n    from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody-\n    but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy\n    days, issuing an invitation to explore even in the most mercurial weather.</p>\n",
            "quantity": 10,
            "is_out_of_stock": false,
            "stock_status_label": "In stock",
            "stock_status_html": "<span class=\"text-success\">In stock</span>",
            "price": 1429.34,
            "price_formatted": "$1,429.34",
            "original_price": 1910,
            "original_price_formatted": "$1,910.00",
            "reviews_avg": 4,
            "reviews_count": 10,
            "image_with_sizes": {
                "origin": [
                    "https://wowy.botble.com/storage/products/3.jpg",
                    "https://wowy.botble.com/storage/products/3-1.jpg",
                    "https://wowy.botble.com/storage/products/3-2.jpg",
                    "https://wowy.botble.com/storage/products/3-3.jpg"
                ],
                "thumb": [
                    "https://wowy.botble.com/storage/products/3-150x150.jpg",
                    "https://wowy.botble.com/storage/products/3-1-150x150.jpg",
                    "https://wowy.botble.com/storage/products/3-2-150x150.jpg",
                    "https://wowy.botble.com/storage/products/3-3-150x150.jpg"
                ],
                "medium": [
                    "https://wowy.botble.com/storage/products/3-800x800.jpg",
                    "https://wowy.botble.com/storage/products/3-1-800x800.jpg",
                    "https://wowy.botble.com/storage/products/3-2-800x800.jpg",
                    "https://wowy.botble.com/storage/products/3-3-800x800.jpg"
                ],
                "product-thumb": [
                    "https://wowy.botble.com/storage/products/3-400x400.jpg",
                    "https://wowy.botble.com/storage/products/3-1-400x400.jpg",
                    "https://wowy.botble.com/storage/products/3-2-400x400.jpg",
                    "https://wowy.botble.com/storage/products/3-3-400x400.jpg"
                ]
            },
            "weight": 588,
            "height": 11,
            "wide": 17,
            "length": 15,
            "image_url": "https://wowy.botble.com/storage/products/3-150x150.jpg",
            "product_options": []
        },
        {
            "id": 4,
            "slug": "chikie-bluetooth-speaker-digital",
            "name": "Chikie - Bluetooth Speaker (Digital)",
            "sku": "WU-182",
            "description": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline.</p>\n<p><img alt=\"icon\" src=\"/storage/general/clock.png\" style=\"height:15px;\">  1 Year AL Jazeera Brand Warranty\n</p>\n<p><img alt=\"icon\" src=\"/storage/general/paper-plane.png\" style=\"height:15px;\">   30 Day Return Policy</p>\n<p><img alt=\"icon\" src=\"/storage/general/credit-card.png\" style=\"height:15px;\">  Cash on Delivery available\n</p>\n",
            "content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in\n    cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic\n    silhouette and utilitarian design details.</p>\n<p>- Casual unisex fit</p>\n\n<p>- 64% polyester, 36% polyurethane</p>\n\n<p>- Water column pressure: 4000 mm</p>\n\n<p>- Model is 187cm tall and wearing a size S / M</p>\n\n<p>- Unisex fit</p>\n\n<p>- Drawstring hood with built-in cap</p>\n\n<p>- Front placket with snap buttons</p>\n\n<p>- Ventilation under armpit</p>\n\n<p>- Adjustable cuffs</p>\n\n<p>- Double welted front pockets</p>\n\n<p>- Adjustable elastic string at hempen</p>\n\n<p>- Ultrasonically welded seams</p>\n\n<p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing\n    information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean\n    and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising\n    from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody-\n    but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy\n    days, issuing an invitation to explore even in the most mercurial weather.</p>\n",
            "quantity": 12,
            "is_out_of_stock": false,
            "stock_status_label": "In stock",
            "stock_status_html": "<span class=\"text-success\">In stock</span>",
            "price": 1066,
            "price_formatted": "$1,066.00",
            "original_price": 1104,
            "original_price_formatted": "$1,104.00",
            "reviews_avg": 2.8,
            "reviews_count": 10,
            "image_with_sizes": {
                "origin": [
                    "https://wowy.botble.com/storage/products/4.jpg",
                    "https://wowy.botble.com/storage/products/4-1.jpg",
                    "https://wowy.botble.com/storage/products/4-2.jpg",
                    "https://wowy.botble.com/storage/products/4-3.jpg"
                ],
                "thumb": [
                    "https://wowy.botble.com/storage/products/4-150x150.jpg",
                    "https://wowy.botble.com/storage/products/4-1-150x150.jpg",
                    "https://wowy.botble.com/storage/products/4-2-150x150.jpg",
                    "https://wowy.botble.com/storage/products/4-3-150x150.jpg"
                ],
                "medium": [
                    "https://wowy.botble.com/storage/products/4-800x800.jpg",
                    "https://wowy.botble.com/storage/products/4-1-800x800.jpg",
                    "https://wowy.botble.com/storage/products/4-2-800x800.jpg",
                    "https://wowy.botble.com/storage/products/4-3-800x800.jpg"
                ],
                "product-thumb": [
                    "https://wowy.botble.com/storage/products/4-400x400.jpg",
                    "https://wowy.botble.com/storage/products/4-1-400x400.jpg",
                    "https://wowy.botble.com/storage/products/4-2-400x400.jpg",
                    "https://wowy.botble.com/storage/products/4-3-400x400.jpg"
                ]
            },
            "weight": 746,
            "height": 18,
            "wide": 15,
            "length": 16,
            "image_url": "https://wowy.botble.com/storage/products/4-150x150.jpg",
            "product_options": []
        },
        {
            "id": 5,
            "slug": "camera-hikvision-hk-35vs8",
            "name": "Camera Hikvision HK-35VS8",
            "sku": "EK-194-A1",
            "description": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline.</p>\n<p><img alt=\"icon\" src=\"/storage/general/clock.png\" style=\"height:15px;\">  1 Year AL Jazeera Brand Warranty\n</p>\n<p><img alt=\"icon\" src=\"/storage/general/paper-plane.png\" style=\"height:15px;\">   30 Day Return Policy</p>\n<p><img alt=\"icon\" src=\"/storage/general/credit-card.png\" style=\"height:15px;\">  Cash on Delivery available\n</p>\n",
            "content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in\n    cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic\n    silhouette and utilitarian design details.</p>\n<p>- Casual unisex fit</p>\n\n<p>- 64% polyester, 36% polyurethane</p>\n\n<p>- Water column pressure: 4000 mm</p>\n\n<p>- Model is 187cm tall and wearing a size S / M</p>\n\n<p>- Unisex fit</p>\n\n<p>- Drawstring hood with built-in cap</p>\n\n<p>- Front placket with snap buttons</p>\n\n<p>- Ventilation under armpit</p>\n\n<p>- Adjustable cuffs</p>\n\n<p>- Double welted front pockets</p>\n\n<p>- Adjustable elastic string at hempen</p>\n\n<p>- Ultrasonically welded seams</p>\n\n<p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing\n    information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean\n    and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising\n    from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody-\n    but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy\n    days, issuing an invitation to explore even in the most mercurial weather.</p>\n",
            "quantity": 16,
            "is_out_of_stock": false,
            "stock_status_label": "In stock",
            "stock_status_html": "<span class=\"text-success\">In stock</span>",
            "price": 768,
            "price_formatted": "$768.00",
            "original_price": 768,
            "original_price_formatted": "$768.00",
            "reviews_avg": 4.125,
            "reviews_count": 8,
            "image_with_sizes": {
                "origin": [
                    "https://wowy.botble.com/storage/products/5.jpg",
                    "https://wowy.botble.com/storage/products/5-1.jpg",
                    "https://wowy.botble.com/storage/products/5-2.jpg",
                    "https://wowy.botble.com/storage/products/5-3.jpg"
                ],
                "thumb": [
                    "https://wowy.botble.com/storage/products/5-150x150.jpg",
                    "https://wowy.botble.com/storage/products/5-1-150x150.jpg",
                    "https://wowy.botble.com/storage/products/5-2-150x150.jpg",
                    "https://wowy.botble.com/storage/products/5-3-150x150.jpg"
                ],
                "medium": [
                    "https://wowy.botble.com/storage/products/5-800x800.jpg",
                    "https://wowy.botble.com/storage/products/5-1-800x800.jpg",
                    "https://wowy.botble.com/storage/products/5-2-800x800.jpg",
                    "https://wowy.botble.com/storage/products/5-3-800x800.jpg"
                ],
                "product-thumb": [
                    "https://wowy.botble.com/storage/products/5-400x400.jpg",
                    "https://wowy.botble.com/storage/products/5-1-400x400.jpg",
                    "https://wowy.botble.com/storage/products/5-2-400x400.jpg",
                    "https://wowy.botble.com/storage/products/5-3-400x400.jpg"
                ]
            },
            "weight": 829,
            "height": 19,
            "wide": 15,
            "length": 17,
            "image_url": "https://wowy.botble.com/storage/products/5-150x150.jpg",
            "product_options": []
        },
        {
            "id": 6,
            "slug": "camera-samsung-ss-24",
            "name": "Camera Samsung SS-24",
            "sku": "ZU-144",
            "description": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline.</p>\n<p><img alt=\"icon\" src=\"/storage/general/clock.png\" style=\"height:15px;\">  1 Year AL Jazeera Brand Warranty\n</p>\n<p><img alt=\"icon\" src=\"/storage/general/paper-plane.png\" style=\"height:15px;\">   30 Day Return Policy</p>\n<p><img alt=\"icon\" src=\"/storage/general/credit-card.png\" style=\"height:15px;\">  Cash on Delivery available\n</p>\n",
            "content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in\n    cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic\n    silhouette and utilitarian design details.</p>\n<p>- Casual unisex fit</p>\n\n<p>- 64% polyester, 36% polyurethane</p>\n\n<p>- Water column pressure: 4000 mm</p>\n\n<p>- Model is 187cm tall and wearing a size S / M</p>\n\n<p>- Unisex fit</p>\n\n<p>- Drawstring hood with built-in cap</p>\n\n<p>- Front placket with snap buttons</p>\n\n<p>- Ventilation under armpit</p>\n\n<p>- Adjustable cuffs</p>\n\n<p>- Double welted front pockets</p>\n\n<p>- Adjustable elastic string at hempen</p>\n\n<p>- Ultrasonically welded seams</p>\n\n<p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing\n    information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean\n    and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising\n    from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody-\n    but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy\n    days, issuing an invitation to explore even in the most mercurial weather.</p>\n",
            "quantity": 11,
            "is_out_of_stock": false,
            "stock_status_label": "In stock",
            "stock_status_html": "<span class=\"text-success\">In stock</span>",
            "price": 1253,
            "price_formatted": "$1,253.00",
            "original_price": 1938,
            "original_price_formatted": "$1,938.00",
            "reviews_avg": 3.8,
            "reviews_count": 10,
            "image_with_sizes": {
                "origin": [
                    "https://wowy.botble.com/storage/products/6.jpg",
                    "https://wowy.botble.com/storage/products/6-1.jpg"
                ],
                "thumb": [
                    "https://wowy.botble.com/storage/products/6-150x150.jpg",
                    "https://wowy.botble.com/storage/products/6-1-150x150.jpg"
                ],
                "medium": [
                    "https://wowy.botble.com/storage/products/6-800x800.jpg",
                    "https://wowy.botble.com/storage/products/6-1-800x800.jpg"
                ],
                "product-thumb": [
                    "https://wowy.botble.com/storage/products/6-400x400.jpg",
                    "https://wowy.botble.com/storage/products/6-1-400x400.jpg"
                ]
            },
            "weight": 707,
            "height": 10,
            "wide": 11,
            "length": 20,
            "image_url": "https://wowy.botble.com/storage/products/6-150x150.jpg",
            "product_options": []
        },
        {
            "id": 7,
            "slug": "leather-watch-band",
            "name": "Leather Watch Band",
            "sku": "L2-105-A1",
            "description": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline.</p>\n<p><img alt=\"icon\" src=\"/storage/general/clock.png\" style=\"height:15px;\">  1 Year AL Jazeera Brand Warranty\n</p>\n<p><img alt=\"icon\" src=\"/storage/general/paper-plane.png\" style=\"height:15px;\">   30 Day Return Policy</p>\n<p><img alt=\"icon\" src=\"/storage/general/credit-card.png\" style=\"height:15px;\">  Cash on Delivery available\n</p>\n",
            "content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in\n    cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic\n    silhouette and utilitarian design details.</p>\n<p>- Casual unisex fit</p>\n\n<p>- 64% polyester, 36% polyurethane</p>\n\n<p>- Water column pressure: 4000 mm</p>\n\n<p>- Model is 187cm tall and wearing a size S / M</p>\n\n<p>- Unisex fit</p>\n\n<p>- Drawstring hood with built-in cap</p>\n\n<p>- Front placket with snap buttons</p>\n\n<p>- Ventilation under armpit</p>\n\n<p>- Adjustable cuffs</p>\n\n<p>- Double welted front pockets</p>\n\n<p>- Adjustable elastic string at hempen</p>\n\n<p>- Ultrasonically welded seams</p>\n\n<p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing\n    information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean\n    and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising\n    from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody-\n    but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy\n    days, issuing an invitation to explore even in the most mercurial weather.</p>\n",
            "quantity": 12,
            "is_out_of_stock": false,
            "stock_status_label": "In stock",
            "stock_status_html": "<span class=\"text-success\">In stock</span>",
            "price": 2099,
            "price_formatted": "$2,099.00",
            "original_price": 2099,
            "original_price_formatted": "$2,099.00",
            "reviews_avg": 2.7,
            "reviews_count": 10,
            "image_with_sizes": {
                "origin": [
                    "https://wowy.botble.com/storage/products/7.jpg",
                    "https://wowy.botble.com/storage/products/7-1.jpg"
                ],
                "thumb": [
                    "https://wowy.botble.com/storage/products/7-150x150.jpg",
                    "https://wowy.botble.com/storage/products/7-1-150x150.jpg"
                ],
                "medium": [
                    "https://wowy.botble.com/storage/products/7-800x800.jpg",
                    "https://wowy.botble.com/storage/products/7-1-800x800.jpg"
                ],
                "product-thumb": [
                    "https://wowy.botble.com/storage/products/7-400x400.jpg",
                    "https://wowy.botble.com/storage/products/7-1-400x400.jpg"
                ]
            },
            "weight": 889,
            "height": 18,
            "wide": 15,
            "length": 13,
            "image_url": "https://wowy.botble.com/storage/products/7-150x150.jpg",
            "product_options": []
        },
        {
            "id": 8,
            "slug": "apple-iphone-13-plus-digital",
            "name": "Apple iPhone 13 Plus (Digital)",
            "sku": "ZK-197-A1",
            "description": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline.</p>\n<p><img alt=\"icon\" src=\"/storage/general/clock.png\" style=\"height:15px;\">  1 Year AL Jazeera Brand Warranty\n</p>\n<p><img alt=\"icon\" src=\"/storage/general/paper-plane.png\" style=\"height:15px;\">   30 Day Return Policy</p>\n<p><img alt=\"icon\" src=\"/storage/general/credit-card.png\" style=\"height:15px;\">  Cash on Delivery available\n</p>\n",
            "content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in\n    cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic\n    silhouette and utilitarian design details.</p>\n<p>- Casual unisex fit</p>\n\n<p>- 64% polyester, 36% polyurethane</p>\n\n<p>- Water column pressure: 4000 mm</p>\n\n<p>- Model is 187cm tall and wearing a size S / M</p>\n\n<p>- Unisex fit</p>\n\n<p>- Drawstring hood with built-in cap</p>\n\n<p>- Front placket with snap buttons</p>\n\n<p>- Ventilation under armpit</p>\n\n<p>- Adjustable cuffs</p>\n\n<p>- Double welted front pockets</p>\n\n<p>- Adjustable elastic string at hempen</p>\n\n<p>- Ultrasonically welded seams</p>\n\n<p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing\n    information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean\n    and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising\n    from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody-\n    but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy\n    days, issuing an invitation to explore even in the most mercurial weather.</p>\n",
            "quantity": 16,
            "is_out_of_stock": false,
            "stock_status_label": "In stock",
            "stock_status_html": "<span class=\"text-success\">In stock</span>",
            "price": 1349.76,
            "price_formatted": "$1,349.76",
            "original_price": 1824,
            "original_price_formatted": "$1,824.00",
            "reviews_avg": 3.2,
            "reviews_count": 10,
            "image_with_sizes": {
                "origin": [
                    "https://wowy.botble.com/storage/products/8.jpg",
                    "https://wowy.botble.com/storage/products/8-1.jpg"
                ],
                "thumb": [
                    "https://wowy.botble.com/storage/products/8-150x150.jpg",
                    "https://wowy.botble.com/storage/products/8-1-150x150.jpg"
                ],
                "medium": [
                    "https://wowy.botble.com/storage/products/8-800x800.jpg",
                    "https://wowy.botble.com/storage/products/8-1-800x800.jpg"
                ],
                "product-thumb": [
                    "https://wowy.botble.com/storage/products/8-400x400.jpg",
                    "https://wowy.botble.com/storage/products/8-1-400x400.jpg"
                ]
            },
            "weight": 770,
            "height": 19,
            "wide": 14,
            "length": 19,
            "image_url": "https://wowy.botble.com/storage/products/8-150x150.jpg",
            "product_options": []
        },
        {
            "id": 9,
            "slug": "macbook-pro-2015",
            "name": "Macbook Pro 2015",
            "sku": "XR-194-A1",
            "description": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline.</p>\n<p><img alt=\"icon\" src=\"/storage/general/clock.png\" style=\"height:15px;\">  1 Year AL Jazeera Brand Warranty\n</p>\n<p><img alt=\"icon\" src=\"/storage/general/paper-plane.png\" style=\"height:15px;\">   30 Day Return Policy</p>\n<p><img alt=\"icon\" src=\"/storage/general/credit-card.png\" style=\"height:15px;\">  Cash on Delivery available\n</p>\n",
            "content": "<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string\n    detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in\n    cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic\n    silhouette and utilitarian design details.</p>\n<p>- Casual unisex fit</p>\n\n<p>- 64% polyester, 36% polyurethane</p>\n\n<p>- Water column pressure: 4000 mm</p>\n\n<p>- Model is 187cm tall and wearing a size S / M</p>\n\n<p>- Unisex fit</p>\n\n<p>- Drawstring hood with built-in cap</p>\n\n<p>- Front placket with snap buttons</p>\n\n<p>- Ventilation under armpit</p>\n\n<p>- Adjustable cuffs</p>\n\n<p>- Double welted front pockets</p>\n\n<p>- Adjustable elastic string at hempen</p>\n\n<p>- Ultrasonically welded seams</p>\n\n<p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing\n    information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean\n    and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising\n    from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody-\n    but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy\n    days, issuing an invitation to explore even in the most mercurial weather.</p>\n",
            "quantity": 10,
            "is_out_of_stock": false,
            "stock_status_label": "In stock",
            "stock_status_html": "<span class=\"text-success\">In stock</span>",
            "price": 785,
            "price_formatted": "$785.00",
            "original_price": 785,
            "original_price_formatted": "$785.00",
            "reviews_avg": 3,
            "reviews_count": 10,
            "image_with_sizes": {
                "origin": [
                    "https://wowy.botble.com/storage/products/9.jpg",
                    "https://wowy.botble.com/storage/products/9-1.jpg"
                ],
                "thumb": [
                    "https://wowy.botble.com/storage/products/9-150x150.jpg",
                    "https://wowy.botble.com/storage/products/9-1-150x150.jpg"
                ],
                "medium": [
                    "https://wowy.botble.com/storage/products/9-800x800.jpg",
                    "https://wowy.botble.com/storage/products/9-1-800x800.jpg"
                ],
                "product-thumb": [
                    "https://wowy.botble.com/storage/products/9-400x400.jpg",
                    "https://wowy.botble.com/storage/products/9-1-400x400.jpg"
                ]
            },
            "weight": 576,
            "height": 14,
            "wide": 18,
            "length": 18,
            "image_url": "https://wowy.botble.com/storage/products/9-150x150.jpg",
            "product_options": []
        }
    ],
    "links": {
        "first": "https://wowy.botble.com/api/v1/ecommerce/products?page=1",
        "last": "https://wowy.botble.com/api/v1/ecommerce/products?page=2",
        "prev": null,
        "next": "https://wowy.botble.com/api/v1/ecommerce/products?page=2"
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 2,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "https://wowy.botble.com/api/v1/ecommerce/products?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": "https://wowy.botble.com/api/v1/ecommerce/products?page=2",
                "label": "2",
                "active": false
            },
            {
                "url": "https://wowy.botble.com/api/v1/ecommerce/products?page=2",
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "https://wowy.botble.com/api/v1/ecommerce/products",
        "per_page": 12,
        "to": 12,
        "total": 24
    },
    "error": false,
    "message": null
}
 

Request      

GET api/v1/ecommerce/products

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Query Parameters

include   string  optional  

Comma-separated list of relations to include (e.g. 'categories,tags').

is_featured   integer  optional  

Filter by featured status (0 or 1).

category   string  optional  

Filter by category slug.

tag   string  optional  

Filter by tag slug.

brand   string  optional  

Filter by brand slug.

categories   string[]  optional  

Filter by category IDs.

brands   string[]  optional  

Filter by brand IDs.

collections   string[]  optional  

Filter by collection IDs.

search   string  optional  

Search term.

order_by   string  optional  

Sort field.

order   string  optional  

Sort direction (asc or desc).

per_page   integer  optional  

Number of items per page.

Get product details by slug

Example request:
curl --request GET \
    --get "https://wowy.botble.com/api/v1/ecommerce/products/architecto" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://wowy.botble.com/api/v1/ecommerce/products/architecto"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": ""
}
 

Request      

GET api/v1/ecommerce/products/{slug}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

slug   string   

The slug of the product. Example: architecto

Example request:
curl --request GET \
    --get "https://wowy.botble.com/api/v1/ecommerce/products/architecto/related" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://wowy.botble.com/api/v1/ecommerce/products/architecto/related"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": ""
}
 

Get product's reviews

Example request:
curl --request GET \
    --get "https://wowy.botble.com/api/v1/ecommerce/products/architecto/reviews" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://wowy.botble.com/api/v1/ecommerce/products/architecto/reviews"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (404):

Show headers
cache-control: no-cache, private
content-type: application/json
access-control-allow-origin: *
 

{
    "message": ""
}
 

Request      

GET api/v1/ecommerce/products/{slug}/reviews

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

slug   string   

The slug of the product. Example: architecto