Products
List products
Lists products in the catalog. Includes products synced from Stripe, Shopify/WooCommerce, and products pushed via the Commerce API.
get/products
Query parameters
limitinteger
Maximum number of products to return
offsetinteger
Number of products to skip
provider'api' | 'stripe' | 'shopify' | 'woocommerce' | 'manual'
Filter products by source provider
searchstring
Filter products by title
Response
Products listed successfully
Example response
{
"success": true,
"products": [
{
"productId": "SKU-PROTEIN-1KG",
"providerProductId": "prod_ABC123",
"provider": "api",
"title": "Protein Powder",
"price": 8850,
"priceCents": 8850,
"currency": "USD",
"digitalDelivery": {
"url": "https://images.sequenzy.com/product-files/comp_123/9f2.../guide.pdf",
"fileName": "guide.pdf",
"mimeType": "application/pdf"
}
}
]
}