Target
Find out how to get Target web data using the Web Scraper API and learn about all supported Target sources.
Getting started
Source
Description
Dedicated parser
Target Source
Request samples
curl 'https://realtime.oxylabs.io/v1/queries' \
--user 'USERNAME:PASSWORD' \
-H 'Content-Type: application/json' \
-d '{
"source": "target",
"url": "https://www.target.com/deals/all",
"render": "html"
}'import requests
from pprint import pprint
# Structure payload
payload = {
'source': 'target',
'url': 'https://www.target.com/deals/all',
'render': 'html',
}
# Get response
response = requests.request(
'POST',
'https://realtime.oxylabs.io/v1/queries',
auth=('USERNAME', 'PASSWORD'),
json=payload,
)
# Print the response
pprint(response.json())Request parameter values
Generic
Parameter
Description
Default Value
Localization
Parameter
Description
Type
Last updated
Was this helpful?

