Get Products API
Authorizations
Query parameters
is_publishedbooleanOptional
Filter by publication status (true for published only).
Responses
200
Successful response with a list of products
application/json
401
Unauthorized request, invalid or missing API key
get
GET /api/v1/products HTTP/1.1
Host: app.dynamicmockups.com
X-Api-Key: YOUR_API_KEY
Accept: */*
{
"success": true,
"message": "",
"data": [
{
"uuid": "e3a9a550-42f1-4cbe-bc33-24b859a13467",
"name": "Classic Crew Neck T-Shirt",
"custom_product_id": "crew-tee-001",
"sku": "CLT100-BLK-M",
"is_published": 1,
"created_at": "2025-04-20T08:45:00Z",
"thumbnail": "https://cdn.example.com/products/crew-tee-001/thumb.jpg",
"template_groups": [
{
"uuid": "4f21ac10-67ff-42f4-9362-84a7498c8a9b",
"name": "Classic Fit - Men",
"is_published": 1,
"inputs": [
{
"key": "artwork_main",
"type": "artwork"
}
]
}
]
}
]
}
is_published
optional query parameter
is_published
optional query parameterProvide is_published = true
If you want to filter the products by their publication status. You may publish or unpublish the products in our web application editor.
Last updated
Was this helpful?