GET Products API

GET Product(s) API

Instruction

Please note that the request limit is 1 request per second, with a maximum of 500 products per request.

Authentication

Authentication uses HTTP Basic authentication, with the customer's email as the username and the API token as the password.

Method 1: Get all products (you are allowed to sell)

Description

Get all products (that you are allowed to sell)

Action

GET

URL

/api_customer/products

Sample request parameters


                                
Method 2: Get a specific product

Description

Get a specific product.

Action

GET

URL

/api_customer/products?code_eq=XXXXX (fill at XXXXX the SKU of the product you are searching for) in this case we use 100058.

Sample response


                                
Method 3: Get products in batches

Description

Get products in batches.

Action

GET

URL

  • /api_customer/products?limit=100&offset=0(from 0-100th product)
  • /api_customer/products?limit=100&offset=100(from 101th to 200th product)
  • /api_customer/products?limit=100&offset=200(from 201th to 300th product)

Sample request parameters