List Amazon Products for Integration
GET/api/amazon/:integrationInstance/products
Paginated list of AmazonProduct rows for one Amazon integration instance. Powers the application UI Amazon → Products listing page (AmazonProductsPage).
Any valid API token can call this endpoint — no specific scope required. Manage tokens.
Uses Spatie QueryBuilder with GroupedFilterSupport, eager-loading productListing.product.defaultFinancialLineType so the SKU.io mapping is rendered inline.
Default behavior: archived products are hidden (archived=0) unless filter[archived] is supplied. Default sort is -id. Default page size is 10.
legacy mode: when the request carries table_specifications, the controller falls back to the legacy abstractIndexForIntegration list view response shape used by the Vue 2 page.
Allowed sorts: id, seller_sku, asin1, item_name, price, quantity, status, fulfillment_channel, brand, product_type, created_at, updated_at.
Advanced filter operators are also supported on seller_sku, asin1, item_name, brand, product_type (text), price (numeric), created_at, updated_at (datetime) via filter[<column>][<operator>]=<value>.
Response shape: standard Laravel paginator wrapping Amazon product object. Each row includes catalog attributes, FBA flags, dimensions/weight, and a sku_product block populated from the linked SKU.io product (when mapped).
Request
Responses
- 200
- 401
- 403
- 404
- 429
OK
Response Headers
Unauthenticated — the bearer token is missing, revoked, expired, or malformed. Never retry automatically; fix the credential. See the Errors guide.
Forbidden — the token lacks a required scope, the endpoint is not available to API tokens, or the user behind the token lacks the permission. A human must adjust the token scopes or user permissions; do not retry.
Not found — no record with the given identifier (or the route does not exist). Verify the ID before retrying.
Rate limited — platform limit is 1,000 requests/min; individual tokens may carry lower limits. Honor the Retry-After header before retrying. See the Rate Limits guide.