Endpoint Search Catalog Items
Name
search_catalog_items
Description
Search for and return a list of Amazon catalog items and associated information either by identifier or by keywords. [API reference]
Parameters
Parameter | Required | Options | ||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Name:
Label: MarketplaceIds |
YES |
|
||||||||||||||||||||||||||||||||||||||||||||||
Name:
Label: Identifiers (comma-delimited list) A comma-delimited list of product identifiers to search the Amazon catalog for. Note: Cannot be used with keywords. |
||||||||||||||||||||||||||||||||||||||||||||||||
Name:
Label: IdentifiersType Type of product identifiers to search the Amazon catalog for. Note: Required when identifiers are provided. |
|
|||||||||||||||||||||||||||||||||||||||||||||||
Name:
Label: IncludedData A comma-delimited list of data sets to include in the response. Default: summaries. |
|
|||||||||||||||||||||||||||||||||||||||||||||||
Name:
Label: Filter |
|
|||||||||||||||||||||||||||||||||||||||||||||||
Name:
Label: Locale Locale for retrieving localized summaries. Defaults to the primary locale of the marketplace. |
||||||||||||||||||||||||||||||||||||||||||||||||
Name:
Label: SellerId A selling partner identifier, such as a seller account or vendor code. Note: Required when identifiersType is SKU. |
||||||||||||||||||||||||||||||||||||||||||||||||
Name:
Label: Keywords (comma-delimited list) A comma-delimited list of words to search the Amazon catalog for. Note: Cannot be used with identifiers. |
||||||||||||||||||||||||||||||||||||||||||||||||
Name:
Label: BrandNames (comma-delimited list) A comma-delimited list of brand names to limit the search for keywords-based queries. Note: Cannot be used with identifiers |
||||||||||||||||||||||||||||||||||||||||||||||||
Name:
Label: Classification Ids (comma-delimited list) A comma-delimited list of classification identifiers to limit the search for keywords-based queries. Note: Cannot be used with identifiers. |
||||||||||||||||||||||||||||||||||||||||||||||||
Name:
Label: KeywordsLocale The language of the keywords provided for keywords-based queries. Defaults to the primary locale of the marketplace. Note: Cannot be used with identifiers. |
||||||||||||||||||||||||||||||||||||||||||||||||
Name:
Label: PageSize |
Output Columns
Label | Data Type (SSIS) | Data Type (SQL) | Length | Description | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
There are no Static columns defined for this endpoint. This endpoint detects columns dynamically at runtime. |
Input Columns
Label | Data Type (SSIS) | Data Type (SQL) | Length | Description | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
There are no Static columns defined for this endpoint. This endpoint detects columns dynamically at runtime. |
Examples
SSIS
Use Amazon Selling Partner (SP-API) Connector in API Source or in API Destination SSIS Data Flow components to read or write data.
API Source
Required Parameters | |
---|---|
MarketplaceIds | Fill-in the parameter... |
Optional Parameters | |
Identifiers (comma-delimited list) | |
IdentifiersType | |
IncludedData | |
Filter | $.items[*].summaries[*] |
Locale | |
SellerId | |
Keywords (comma-delimited list) | |
BrandNames (comma-delimited list) | |
Classification Ids (comma-delimited list) | |
KeywordsLocale |

API Destination
Required Parameters | |
---|---|
MarketplaceIds | Fill-in the parameter... |
Optional Parameters | |
Identifiers (comma-delimited list) | |
IdentifiersType | |
IncludedData | |
Filter | $.items[*].summaries[*] |
Locale | |
SellerId | |
Keywords (comma-delimited list) | |
BrandNames (comma-delimited list) | |
Classification Ids (comma-delimited list) | |
KeywordsLocale |

ODBC application
Use these SQL queries in your ODBC application data source:
Search catalog items
SELECT * FROM search_catalog_items
WITH
(
"MarketplaceIds" = 'abcd-1234-marketplaceids'
)
SQL Server
Use these SQL queries in SQL Server after you create a data source in Data Gateway:
Search catalog items
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM search_catalog_items
WITH
(
"MarketplaceIds" = ''abcd-1234-marketplaceids''
)';
EXEC (@MyQuery) AT [LS_TO_AMAZON_SELLING_PARTNER_SP_API_IN_GATEWAY];