revolution / laravel-amazon-product-api
Amazon Product Advertising API for Laravel
4.9.0
2025-03-17 01:17 UTC
Requires
- php: ^8.2
- guzzlehttp/guzzle: ^7.5
- illuminate/support: ^11.0||^12.0
- thewirecutter/paapi5-php-sdk: ^1.2
Requires (Dev)
- orchestra/testbench: ^10.0
- dev-master
- 4.9.0
- 4.8.0
- 4.7.0
- 4.6.0
- 4.5.0
- 4.4.1
- 4.4.0
- 4.3.0
- 4.2.1
- 4.2.0
- 4.1.1
- 4.1.0
- 4.0.9
- 4.0.8
- 4.0.7
- 4.0.6
- 4.0.5
- 4.0.4
- 4.0.3
- 4.0.2
- 4.0.1
- 4.0.0
- 3.0.0
- 2.0.x-dev
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0.0
- 1.1.0
- 1.0.x-dev
- 1.0.1
- 1.0.0
- 0.4.0
- 0.3.0
- 0.2.6
- 0.2.5
- 0.2.4
- 0.2.3
- 0.2.2
- 0.2.1
- 0.2.0
- 0.1.0
- dev-analysis-lZ5BEN
- dev-paapi5
This package is auto-updated.
Last update: 2025-03-17 01:18:59 UTC
README
End of active support (2020/06)
My API account has been banned, so my active support is over. However, PR is accepted.
Requirements
- PHP >= 8.2
- Laravel >= 11.0
Versioning
- Basic : semver
- Drop old PHP or Laravel version :
+0.1
. composer should handle it well. - Support only latest major version (
master
branch), but you can PR to old branches.
Installation
Composer
composer require revolution/laravel-amazon-product-api
Publishing config (Optional)
php artisan vendor:publish --tag=amazon-product-config
.env
AMAZON_API_KEY= AMAZON_API_SECRET_KEY= AMAZON_ASSOCIATE_TAG= AMAZON_HOST=webservices.amazon.com AMAZON_REGION=us-east-1
Country lists
https://webservices.amazon.com/paapi5/documentation/common-request-parameters.html
Note
Usage
<?php use Revolution\Amazon\ProductAdvertising\Facades\AmazonProduct; # string $category, string $keyword = null, int $page = 1 $response = AmazonProduct::search(category: 'All', keyword: 'amazon' , page: 1); dd($response); # returns normal array # string $browse Browse node $response = AmazonProduct::browse(node: '1'); # string $asin ASIN $response = AmazonProduct::item(asin: 'ASIN1'); # array $asin ASIN $response = AmazonProduct::items(asin: ['ASIN1', 'ASIN2']); # setIdType: support only item() and items() $response = AmazonProduct::setIdType(idType: 'EAN')->item(asin: 'EAN'); # reset to ASIN AmazonProduct::setIdType(idType: 'ASIN'); # PA-APIv5 not support EAN?
browse()
is not contains detail data.
use Revolution\Amazon\ProductAdvertising\Facades\AmazonProduct; $response = AmazonProduct::browse(node: '1'); $nodes = data_get($response, 'BrowseNodesResult'); $items = data_get($nodes, 'BrowseNodes.TopSellers.TopSeller'); $asins = data_get($items, '*.ASIN'); $results = AmazonProduct::items(asin: $asins); # PA-APIv5 not support TopSeller?
Probably, you need try-catch or Laravel's rescue()
helper.
use Revolution\Amazon\ProductAdvertising\Facades\AmazonProduct; try { $response = AmazonProduct::browse(node: '1'); } catch(ApiException $e) { } $response = rescue(function () use ($browse_id) { return AmazonProduct::browse(node: $browse_id); }, []);
LICENSE
MIT
Copyright kawax