send("/catalog/2022-04-01/items", [ 'method' => 'GET', 'query' => $queryParams, ]); } public function searchCatalogItemsAsync($queryParams = []) { return $this->sendAsync("/catalog/2022-04-01/items", [ 'method' => 'GET', 'query' => $queryParams, ]); } /** * Operation getCatalogItem * * @param string $asin The Amazon Standard Identification Number (ASIN) of the item. * * @param array $queryParams * - *marketplaceIds* array - A comma-delimited list of Amazon marketplace identifiers. Data sets in the response contain data only for the specified marketplaces. * - *includedData* array - A comma-delimited list of data sets to include in the response. Default: `summaries`. * - *locale* string - Locale for retrieving localized summaries. Defaults to the primary locale of the marketplace. * */ public function getCatalogItem($asin, $queryParams = []) { return $this->send("/catalog/2022-04-01/items/{$asin}", [ 'method' => 'GET', 'query' => $queryParams, ]); } public function getCatalogItemAsync($asin, $queryParams = []) { return $this->sendAsync("/catalog/2022-04-01/items/{$asin}", [ 'method' => 'GET', 'query' => $queryParams, ]); } }