# API Documentation

# Description

This endpoint allows you to retrieve all information about products in the website.

# Data

Endpoint: /dashboard/api/products

# Params

pagesize (number of orders to show per page, max 200)

page (page requested)

text_search (string: To search based on sku or title)

# Example

Endpoint: /dashboard/api/products?pagesize=10&page=1

# Auth

token header provided by Pow.

# Response

Status: 200 OK


[
    {
        "page": 1,
        "totalpages": 3
    },
    {
        "item_id": 13,
        "skus": [
            {
                "variant_id": 20,
                "sku": "remeranegra-m",
                "title": "Remera negra",
                "price": 5500.0,
                "desc": "[\"Color: Negro\", \"Talle: M\"]",
                "categories": [
                    [
                        "Moda",
                        1
                    ]
                ],
                "special_price": 3000.0,
                "available": true,
                "availablequantity": 999,
                "link": "http://template.pow.la/productos/remera-negra&?variant_id=20&main_property_id=1",
                "image": "http://template.pow.la/uploads/picture/image/45/thumb_Captura_de_Pantalla_2022-07-21_a_la_s__22.17.46.png"
            },
            {
                "variant_id": 97,
                "sku": "1234567",
                "title": "Remera negra",
                "price": 1000.0,
                "desc": "[\"Color: Azul\", \"Talle: S\"]",
                "categories": [
                    [
                        "Moda",
                        1
                    ]
                ],
                "special_price": 0.0,
                "available": true,
                "availablequantity": 1000,
                "link": "http://template.pow.la/productos/remera-negra&?variant_id=97&main_property_id=2",
                "image": "http://template.pow.la/uploads/picture/image/142/thumb_Captura_de_Pantalla_2023-06-06_a_la_s__17.27.11.png"
            }
        ]
    }
    // More products...
]