curl -X POST "https://api.getcatalog.ai/api/feed" \ -H "x-api-key: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "vendor": "fwrd", "page": 1, "page_size": 20 }'
{ "products": [ { "id": "sez-001", "title": "Silk Blouse", "description": "Classic silk blouse with button front", "vendor": "fwrd", "brand": "fwrd", "url": "https://fwrd.com/blouse-001", "handle": "silk-blouse", "is_available": true, "attributes": { "color": "cream", "material": "silk", "category": "Women > Tops", "season": "all-season" }, "price_amount": 14999, "price_currency": "USD", "max_price": 14999, "min_price": 14999, "images": { "primary": "https://example.com/blouse.jpg" }, "options": ["Color", "Size"], "variants": [ { "id": "var-001", "color": "cream", "size": "M" } ], "store_canonical_url": "https://fwrd.com/blouse-001", "store_domain": "fwrd.com", "platform": "shopify", "platform_id": "123456", "description_html": "<p>Classic silk blouse with button front</p>", "product_type": "Tops", "tags": ["silk", "blouse", "classic"], "updated_at": "2024-01-15T10:30:00Z" } ], "meta": { "totalItems": 45, "totalPages": 3, "currentPage": 1, "pageSize": 20 } }
Retrieve customizable product feeds for commerce applications
Show Product Object
Show Meta Properties
curl -X POST "https://api.getcatalog.ai/api/feed" \ -H "x-api-key: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "vendor": "Ganni", "page": 1 }'
curl -X POST "https://api.getcatalog.ai/api/feed" \ -H "x-api-key: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "vendor": "fwrd", "page": 2 }'
curl -X POST "https://api.getcatalog.ai/api/feed" \ -H "x-api-key: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "vendor": "amiri", "page": 1, "page_size": 50 }'
{ "error": "Invalid request: vendor parameter is required" }