# Get products list **GET /products** ℹ You should never need to call this endpoint with proper API implementation. Method returns ids of all partner's products. The list can contain both active and inactive products. With URL parameter `filter=basic` objects with basic product data are returned instead of list of ids. #### Example ``` { "result": { "code": 200, "status": "OK" }, "paging": { "total": 1, "pages": 1, "size": 1000, "page": 1 }, "data": [ { "id": "100000000111", "product_id": 100000000001, "title": "Some product title", "status": "A", "stage": "live", "in_stock": 0, "category_id": "MP001", "price": 5.6, "fair_price": 4.7, "rrp": 29 "variants_count": 0, "has_variants": false } ] } ``` ## Servers ## Parameters ### Headers - **X-Application-Name** (string) ### Query parameters - **client_id** (string) Client identifier - **filter** (string) With URL parameter `filter=basic` objects with basic data are returned instead of list of ids. ## Responses ### 200 Product list OK response #### Body: (object) - **data** (object) - **result** (object) - **paging** (object) [Powered by Bump.sh](https://bump.sh)