Skip to main content
GET
/
api
/
v1
/
products
/
{productId}
Get Product
curl --request GET \
  --url https://api.sequenzy.com/api/v1/products/{productId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "product": {
    "id": "prod_abc123",
    "productId": "SKU-PROTEIN-1KG",
    "provider": "api",
    "title": "Protein Powder",
    "priceCents": 8850,
    "currency": "USD",
    "inStock": true,
    "variants": []
  }
}
Get a product previously pushed via the Commerce API, identified by your productId.

Path Parameters

productId
string
required
Your product identifier (the productId used when upserting).
curl "https://api.sequenzy.com/api/v1/products/SKU-PROTEIN-1KG" \
  -H "Authorization: Bearer YOUR_API_KEY"

Responses

{
  "success": true,
  "product": {
    "id": "prod_abc123",
    "productId": "SKU-PROTEIN-1KG",
    "provider": "api",
    "title": "Protein Powder",
    "priceCents": 8850,
    "currency": "USD",
    "inStock": true,
    "variants": []
  }
}