cURL
curl --request GET \ --url https://api.wizcommerce.com/v1/products \ --header 'X-API-Key: <api-key>'
{ "data": [ { "reference_id": "SKU123", "id": "01f5d171-d3e3-4b2b-bd57-0727194b5bed", "sku": "SKU123", "name": "Product Name", "group_code": "PRD1", "medias": [ { "is_default": true, "type": "image", "url": "https://example.com/image1.jpg" } ], "is_primary": true, "status": "active", "attributes": [ { "id": "1234567890", "name": "color", "value": "red" } ], "created_at": "<string>", "updated_at": "<string>" } ], "pagination": { "total_records": 100, "total_pages": 10, "current_page": 1, "next_page": 2, "prev_page": 0, "page_size": 10 } }
List Products
API Key for authentication
x >= 1
1 <= x <= 100
asc
desc
default is sku_id
created_at
updated_at
name
sku_id
OK
The response is of type object.
object
Was this page helpful?