Scrape Target product search
curl --request POST \
--url https://api.scrapeunblocker.com/marketplace/target-search \
--header 'x-scrapeunblocker-key: <api-key>'import requests
url = "https://api.scrapeunblocker.com/marketplace/target-search"
headers = {"x-scrapeunblocker-key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'x-scrapeunblocker-key': '<api-key>'}};
fetch('https://api.scrapeunblocker.com/marketplace/target-search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Plugins
Scrape Target product search
Searches Target for query and returns the products as JSON: tcin, title, brand, price and formattedPrice, currency, image and a product url. Sort with sort, filter with min_price/max_price, and collect up to max_results across pages. Data comes from Target’s Redsky API, since target.com itself is a client-rendered shell.
Scrape Target product search
curl --request POST \
--url https://api.scrapeunblocker.com/marketplace/target-search \
--header 'x-scrapeunblocker-key: <api-key>'import requests
url = "https://api.scrapeunblocker.com/marketplace/target-search"
headers = {"x-scrapeunblocker-key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'x-scrapeunblocker-key': '<api-key>'}};
fetch('https://api.scrapeunblocker.com/marketplace/target-search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Authorizations
Your ScrapeUnblocker API key. Apply on every request.
Query Parameters
What to search, e.g. 'coffee maker' or 'tv'.
Ordering: relevance, newest, price_low, price_high.
Lowest price to include (USD).
Required range:
x >= 0Highest price to include (USD).
Required range:
x >= 0How many products to collect across pages.
Required range:
1 <= x <= 500Exit-IP country (ISO-2). Defaults to a US exit.
Response
JSON with a products array.

