Skip to main content
GET
/
api
/
v1
/
products
List Products
curl --request GET \
  --url https://api.sequenzy.com/api/v1/products \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "products": [
    {
      "id": "prod_abc123",
      "productId": "SKU-PROTEIN-1KG",
      "provider": "api",
      "title": "Protein Powder",
      "priceCents": 8850,
      "currency": "USD",
      "inStock": true,
      "variants": []
    }
  ],
  "pagination": {
    "limit": 50,
    "offset": 0,
    "count": 1
  }
}
List products in your catalog. Includes products synced from Shopify/WooCommerce and products pushed via the Commerce API.

Query Parameters

limit
integer
Maximum number of products to return (1-100). Defaults to 50.
offset
integer
Number of products to skip. Defaults to 0.
provider
string
Filter products by source: api, shopify, woocommerce, or manual.
curl "https://api.sequenzy.com/api/v1/products?provider=api&limit=50" \
  -H "Authorization: Bearer YOUR_API_KEY"

Responses

{
  "success": true,
  "products": [
    {
      "id": "prod_abc123",
      "productId": "SKU-PROTEIN-1KG",
      "provider": "api",
      "title": "Protein Powder",
      "priceCents": 8850,
      "currency": "USD",
      "inStock": true,
      "variants": []
    }
  ],
  "pagination": {
    "limit": 50,
    "offset": 0,
    "count": 1
  }
}