Get Products
Authorizations
Query parameters
style_keyany ofOptional
Style key to search for
stringOptional
nullOptional
skuany ofOptional
SKU to search for
stringOptional
nullOptional
statusany ofOptional
Status of the product to filter by. Choose from: "draft", "pending_approval", "rejected", "pending_active", "active", "inactive", "archived", "problem".
string · enumOptionalPossible values:
nullOptional
pageinteger · min: 1OptionalDefault:
Page number to retrieve items from.
1
per_pageinteger · min: 1 · max: 100OptionalDefault:
Number of items per page.
20
Responses
200
OK
application/json
400
Bad Request
application/json
401
Unauthorized
application/json
get
GET /api/v1/products/ HTTP/1.1
Host:
X-API-Key: YOUR_API_KEY
Accept: */*
{
"items": [
{
"style_key": "text",
"status": "text",
"sku": "text",
"ean": "text",
"hs_code": "text",
"name": "text",
"descriptions": {
"de": "This is a description"
},
"color": 1,
"size": 1,
"second_size": 1,
"brand": 1,
"category": 1,
"quantity": 100,
"quantity_fbm": 100,
"weight": 1,
"countries": [
"text"
],
"country_of_origin": "text",
"attributes": [
1
],
"material_composition_textile": [
{
"cluster_id": 1,
"components": [
{
"material_id": 1,
"fraction": 100
}
]
}
],
"material_composition_non_textile": [
{
"cluster_id": 1,
"components": [
{
"material_id": 1
}
]
}
],
"prices": [
{
"country_code": "DE",
"retail_price": 100,
"sale_price": 80
}
],
"images": [
"text"
]
}
],
"pagination": {
"per_page": 1,
"page": 1,
"pages": 1,
"total": 1,
"next": "text",
"prev": "text"
}
}
Last updated
Was this helpful?