Skip to main content
GET
/
system
/
products
List Products
curl --request GET \
  --url https://api.dontdie.com/system/products \
  --header 'Authorization: Bearer <token>' \
  --header 'x-dd-client-id: <api-key>'
[
  {
    "id": "1234-5678-9012-3456",
    "name": "Nutty Pudding",
    "description": "Nutty Pudding is a delicious and nutritious dessert that is perfect for a healthy and active lifestyle.",
    "category": "Nutrition",
    "pdpUrl": "https://www.dontdie.com/products/nutty-pudding",
    "primaryImageUrl": "https://www.dontdie.com/products/nutty-pudding/primary-image.png",
    "disabled": false
  }
]

Authorizations

Authorization
string
header
required

Enter your Bearer token in the format: Bearer

x-dd-client-id
string
header
required

Your API client ID for the request

Response

200 - application/json

OK

id
string
required

The ID of the product

Example:

"1234-5678-9012-3456"

name
string
required

The name of the product

Example:

"Nutty Pudding"

description
string
required

The description of the product

Example:

"Nutty Pudding is a delicious and nutritious dessert that is perfect for a healthy and active lifestyle."

category
string
required

The category of the product

Example:

"Nutrition"

pdpUrl
string
required

The URL of the product's PDP page

Example:

"https://www.dontdie.com/products/nutty-pudding"

primaryImageUrl
string
required

The URL of the product's primary image

Example:

"https://www.dontdie.com/products/nutty-pudding/primary-image.png"

disabled
boolean
required

Whether the product is disabled

Example:

false