Receive a list of Products
Param name | Description |
---|---|
internal_id optional |
An array of internal Product IDs in your webshop Value: Must be an array of String |
fields optional |
A comma-separated list of fields which should be returned with the product. Available: rating, votes, review_count, reviews. By default it’s empty Value: Must be a String |
page optional |
Page number. By default 1 Value: Must be a Integer |
per_page optional |
Page size. By default 100. Maximum is 100 Value: Must be a Integer |
api_key required |
API key (a 24 character unique code) Value: Must be a String |
GET /products?internal_id[]=4716051&fields=rating,votes&api_key=889c3f3e4b6ac67269261324Response
[ { "id": "1807875", "internal_id": "4716051", "sku": [ "Lipscore_4716051", "Lipscore_4716051_Black" ], "name": "Lipscore Ultra i9 SmartPhone", "brand": "Lipscore", "gtin": "3234567890126", "mpn": "XTR-4590A", "urls": [ "http://mysite.com/products/lipscore-ultra-i9/6268A", "http://mysite.com/products/lipscore-ultra-i9-black/6128B" ], "votes": 18, "rating": "4.4", "review_count": null, "reviews": [ { "id": 39216, "text": "This product is great! I will be back for more, thank you!", "created_at": "2022-12-24T14:50:56.410Z", "votes_up": 1, "votes_down": 0, "video": "", "purchase_date": "2022-11-27T11:14:59.230Z", "rating": 5, "user": { "id": 56634, "name": "John Doe", "avatar_thumb_url": "https://static.lipscore.com/avatars/000/000/000/thumb_000000005936.jpg", "short_name": "John" }, "images": [ { "id": 134, "thumb_url": "https://static.lipscore.com/uploads/000/000/000/thumb_000000000134.jpg", "image_url": "https://static.lipscore.com/uploads/000/000/000/000000000134.jpg" } ], "review_reply": { "text": "Thank you!", "created_at": "2022-12-25T07:06:34.362Z", "member_site": "Demo site" }, "internal_order_id": "778203", "internal_customer_id": "84021", "internal_attr_1": "Attribute 1", "internal_attr_2": "Attribute 2", "internal_attr_3": "Attribute 3", "internal_attr_4": "Attribute 4", "internal_attr_5": "Attribute 5", "testimonial": true, "displayed_name": "John Doe" } ] } ]