Modified
Last run
Used 32 times
Last run
Used 32 times
- How to run
- Source code
- Statistics
To run the actor, you'll need a free Apify account. Simply open the actor console by clicking the button below, modify the actor input configuration, click Run and get your results.
API
To run the actor from your code, send a HTTP POST request to the following API endpoint:
https://api.apify.com/v2/acts/fvitas~amazon-search-offers/runs?token=<YOUR_API_TOKEN>
The POST payload including its Content-Type
header is passed as INPUT
to the actor (usually application/json
). The actor is started with the default options; you can override them using various URL query parameters.
curl https://api.apify.com/v2/acts/fvitas~amazon-search-offers/runs?token=<YOUR_API_TOKEN> \
-d '{
"product": "iphone",
"count": 20
}' \
-H 'Content-Type: application/json' \
-X POST
To use the API, you'll need to replace <YOUR_API_TOKEN>
with the API token of your Apify account (view here).
For more information, view the list of actor API endpoints or the full API reference.