Export product data π
Export product-level data based on the definition of a Deck column template.
Data is returned as json, paginated in product slices.
Path parameters
-
The uuid of the column template in Deck.
As it is a product dedicated endpoint, no SKU information must be requested in this export, they will simply be ignored.
The keys in the response will use the english column name by default. To avoid breaking keys, please configure explicit slugs in the column templates.
GET
/export/products/{template_uuid}
curl \
--request GET 'https://api.ppe-analytics.com/api/v1/export/products/{template_uuid}' \
--header "PPEApiKey: $API_KEY"
Response examples (200)
{
"status": "OK",
"result": {
"rows": [
{
"values": {
"col1": 123,
"col2": "foo",
"My col 3": "bar"
},
"product_id": "123456789",
"segment_key": "head-protection"
},
{
"values": {
"col1": 23,
"col2": "foo2",
"My col 3": "bar2"
},
"product_id": "9123456789",
"segment_key": "head-protection"
}
],
"pagination": {
"slice_size": 25,
"total_count": 2457,
"slice_number": 1,
"modified_after": "2025-12-07",
"max_slice_number": 14,
"api_get_next_slice": "/api/v1/export/products/abb230c2-2753-473c-b298-88fab2bc7c8c-0?slice_size=25&slice_number=2&language_code=en&modified_after=2025-12-07"
}
}
}