v1

latestSwagger 2.0MIT2026-07-17233380637.0 KB
Ecommerce

Return all your products

get/products

Query parameters

limitinteger

Number of documents per page

offsetinteger

Index of the first document in the page

sort'asc' | 'desc'

Sort the results in the ascending/descending order of record creation. Default order is descending if sort is not passed

idsstring[]

Filter by product ids

namestring

Filter by product name, minimum 3 characters should be present for search

price[lte]number

Price filter for products less than and equals to particular amount

price[gte]number

Price filter for products greater than and equals to particular amount

price[lt]number

Price filter for products less than particular amount

price[gt]number

Price filter for products greater than particular amount

price[eq]number

Price filter for products equals to particular amount

price[ne]number

Price filter for products not equals to particular amount

categoriesstring[]

Filter by category ids

modifiedSincestring

Filter (urlencoded) the orders modified after a given UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ). Prefer to pass your timezone in date-time format for accurate result.

createdSincestring

Filter (urlencoded) the orders created after a given UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ). Prefer to pass your timezone in date-time format for accurate result.

Response

All products listed

countinteger required

Number of products

Example response

{
  "products": [
    {
      "s3ThumbAnalytics": "s3ThumbAnalytics",
      "modifiedAt": "2017-05-12T12:30:00.000+0000",
      "url": "http://mydomain.com/product/electronics/product1",
      "parentId": "parentId",
      "createdAt": "2017-05-12T12:30:00.000+0000",
      "metaInfo": {
        "description": "Shoes for sports",
        "brand": "addidas"
      },
      "isDeleted": true,
      "price": 0.8008282,
      "imageUrl": "http://mydomain.com/product-absoulte-url/img.jpeg",
      "name": "Iphone 11",
      "s3ThumbEditor": "s3ThumbEditor",
      "id": "P11",
      "categories": [
        "categories",
        "categories"
      ],
      "sku": "sku",
      "s3Original": "s3Original"
    }
  ],
  "count": 17655
}