Search Inbound Products by Country
GET/api/amazon/:integrationInstance/inbound-products/:countryCode
Searches products eligible for FBA inbound shipping on this integration instance, scoped to one marketplace country. Backed by the mapped Amazon listings joined with current FBA inventory, so each row carries the Amazon identifiers plus live FBA quantity buckets.
Any valid API token can call this endpoint — no specific scope required. Manage tokens.
Path parameter countryCode is the marketplace country code (e.g. US, CA). Query parameter query (optional) does a partial match against product SKU, MSKU, ASIN, FNSKU, or product name; omit it to list all inbound-eligible products for the country.
Each result includes identifiers (msku, asin, fnsku, product_id, product_sku, product_name, product_image, country_code), FBA quantity buckets (warehouse_quantity, fulfillable_quantity, unsellable_quantity, reserved_quantity, inbound_quantity, inbound_working_quantity, inbound_shipped_quantity, inbound_receiving_quantity), inbound ownership defaults (label_owner, prep_owner — AMAZON | SELLER | NONE), case-pack settings (case_pack_qty, case_pack_rounding), and unit measurements with derived metrics (weight, weight_unit, weight_estimated, length, width, height, dimension_unit, dims_estimated, unit_weight_lb, unit_volume_cuft, unit_cost, size_tier). source_quantity is null here — it is only populated by the plan-scoped product search, which computes availability at the plan's source warehouse. Returns the full (non-paginated) matching list.
Each product includes an eligibility object { shippable: bool, reason: string|null } — false with a reason when the SKU can't be inbounded (no FNSKU, removed from Amazon, or an inactive listing).
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.