Retrieve products from a Wix store using the Catalog V3 Query Products API.
Use the POST Query Products endpoint to query products. The endpoint returns up to 100 products per request.
Endpoint: POST https://www.wixapis.com/stores/v3/products/query
Basic query (all products, default fields):
This returns all products with their default fields (id, name, slug, visible, productType, priceData, stock, media, etc.).
fields parameterThe fields array requests additional fields beyond the defaults. It does NOT accept property names like "name" or "id".
⚠️ CRITICAL: Valid fields enum values:
| Enum Value | Description |
|---|---|
URL | Product page URL |
CURRENCY | Currency information |
INFO_SECTION | Info sections (rich content) |
MERCHANT_DATA | Merchant-specific data |
PLAIN_DESCRIPTION | Plain text description |
INFO_SECTION_PLAIN_DESCRIPTION | Info section plain text |
SUBSCRIPTION_PRICES_INFO | Subscription pricing |
BREADCRUMBS_INFO | Category breadcrumbs |
WEIGHT_MEASUREMENT_UNIT_INFO | Weight unit info |
VARIANT_OPTION_CHOICE_NAMES | Variant option choice names |
MEDIA_ITEMS_INFO | Additional media items |
DESCRIPTION | Rich text description |
DIRECT_CATEGORIES_INFO | Direct category info |
ALL_CATEGORIES_INFO | All category info |
MIN_VARIANT_PRICE_INFO | Minimum variant price |
INFO_SECTION_DESCRIPTION | Info section rich content |
THUMBNAIL | Thumbnail image |
DIRECT_CATEGORY_IDS | Direct category IDs |
PRODUCT_CHOICES_MEDIA_REFERENCES | Choice-specific media |
WRONG – these are NOT valid field values:
CORRECT – use enum constants or leave empty for defaults:
CORRECT – requesting additional fields:
Query with filter and sort:
Filter by product IDs:
When there are more products than the page limit, use cursor-based or offset-based paging:
Check the response pagingMetadata to determine if more pages exist.
SCOPE.STORES.PRODUCT_READ_ADMIN permission.id, name, slug, visible, productType, priceData, stock, media, createdDate, updatedDate.fields parameter adds fields on top of the defaults — you never need to request id or name explicitly.To query products, use POST https://www.wixapis.com/stores/v3/products/query with an empty query object for all products. Use fields: [] for defaults, or pass valid enum values like DESCRIPTION, URL, ALL_CATEGORIES_INFO for additional data. Never pass property names as field values.