Bulk Service Request
π§©Endpoint
POST https://bulk.easyparser.com/v1/bulkπHeaders
api-key
Your API Key
Required for authentication.
Content-Type
application/json
Specifies the JSON data format.
πExample Request
curl --location 'https://bulk.easyparser.com/v1/bulk' \
--header 'api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '[
{
"platform": "AMZ",
"operation": "SEARCH",
"domain": ".ca",
"payload": {
"urls": [
"https://www.amazon.ca/s?k=electronics&crid=1CINN2KWI7D8L&sprefix=electronics%2Caps%2C120&ref=nb_sb_noss_1",
"https://www.amazon.ca/s?k=smartphone&crid=1IX1CAAXNGZHH&sprefix=smartphone%2Caps%2C237&ref=nb_sb_noss_1"
],
"address_id" : 872 ,
"exclude_sponsored":"true" ,
"sort_by":"price-asc-rank"
},
"callback_url": "https://example.com/webhook"
}
]'import requests
import json
url = "https://bulk.easyparser.com/v1/bulk"
payload = json.dumps([
{
"platform": "AMZ",
"operation": "SEARCH",
"domain": ".ca",
"payload": {
"urls": [
"https://www.amazon.ca/s?k=electronics&crid=1CINN2KWI7D8L&sprefix=electronics%2Caps%2C120&ref=nb_sb_noss_1",
"https://www.amazon.ca/s?k=smartphone&crid=1IX1CAAXNGZHH&sprefix=smartphone%2Caps%2C237&ref=nb_sb_noss_1"
],
"address_id": 872,
"exclude_sponsored": "true",
"sort_by": "price-asc-rank"
},
"callback_url": "https://example.com/webhook"
}
])
headers = {
'api-key': 'YOUR_API_KEY',
'Content-Type': 'application/json'
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
π¦ Bulk Request Structure and Parameters
platform
string
β
β
The platform on which the operation will be performed. Currently, only the value βAMZβ is supported.
operation
string
β
β
The type of parse operation to be performed. For example: SEARCH, DETAIL, OFFER...
domain
string
β
β
Specifies the country domain to be parsed. For example: .ca, .com, .de.
callback_url
string
β
β
The callback (webhook) URL to receive the results.
address_id
string
β
β
The ID of the address defined and activated by the user on the EasyParser platform. Specifying this allows scanning to be performed at the desired location.
payload
object
β
β
Special parameters included based on the operation type. For example, urls or keywords for SEARCH, urls or asins for DETAIL, and asins for OFFER.
β urls
array
β
β (SEARCH, DETAIL)
A list of URLs to be parsed directly on Amazon.
β keywords
array
β
β (SEARCH)
A list of keywords to be searched on Amazon.
β asins
array
β
β (DETAIL,OFFER)
A list of ASIN values for Amazon product details.
β page
integer
β
β
Specifies which page to parse. If a page parameter is present in the URL but not in the payload, the value from the URL will be used.
β exclude_sponsored
boolean
β
β
Exclude sponsored results? Default: false
β sort_by
string
β
β
The sorting method for results. Possible values: 'featured', 'price-asc-rank', 'price-desc-rank', 'review-rank', 'date-desc-rank', 'exact-aware-popularity-rank'.
β language
string
β
β
Specifies the language in which you want the results to be returned. Can be found on the https://app.easyparser.com/playground page.
β include_html
boolean
β
β
Specifies whether to include raw HTML content in the returned results.
π Operation Types and Payload Examples
SEARCH The
Searchoperation is used to perform a keyword or URL-based search on Amazon and retrieve a list of products that appear in the results. This mimics what a user would see when they type a query into Amazon's search bar or visit a search result page.
For more information, you can visit the SEARCH page.
Payload
urls: A list of Amazon search URLs. orkeywords: A list of Amazon ASINs to retrieve details for.
or
DETAIL
The Detail operation is used to retrieve detailed information about a specific product on Amazon. This operation can be called using either the ASIN (Amazon Standard Identification Number) or a direct product URL.
For more information, you can visit the DETAIL page.
Payload
urls: A list of Amazon search URLs. orasins: A list of Amazon ASINs to retrieve details for.
or
OFFER
The Offer operation is used to retrieve offer-level data for a specific product on Amazon. It provides a list of all available seller offers for a product, including pricing, condition, fulfillment method, and Buy Box information.
For more information, you can visit the OFFER page.
Payload
asins: A list of Amazon ASINs to retrieve details for.
π© What Happens After You Send the Request?
Once your bulk request is successfully submitted, the system will process your queries asynchronously. You will immediately receive a response containing metadata and a list of accepted queries with their unique IDs.
π To understand the structure of this response and what each field means, proceed to the Bulk Service Response section.
Last updated