Target
With Web Scraper API, you can scrape and parse various types of Target pages; below is an overview of all supported scrapers and their respective source
values.
Getting started
target
Access any Target URL directly with additional localization options.
No
target_category
Category page based on Target's taxonomy node ID.
No
Create your API user credentials: Sign up for a free trial or purchase the product in the Oxylabs dashboard to create your API user credentials (USERNAME
and PASSWORD
).
If you need more than one API user for your account, please contact our customer support or message our 24/7 live chat support.
We use synchronous Realtime integration method in our examples. If you would like to use Proxy Endpoint or asynchronous Push-Pull integration, refer to the integration methods section.
Optionally, you can include additional parameters such as user_agent_type
, parse
, render
and more to customize your scraping request. Read more:
Features
Target Source
The target source allows you to retrieve any Target page by providing a direct URL. This is useful for accessing specific Target pages that aren't covered by the specialized sources.
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/c/deals/-/N-4lwvo",
"render": "html"
}'
Request parameter values
Generic
- mandatory parameter
Localization
Adapt results to specific stores and delivery locations.
store_id
Set the store location.
Integer
delivery_zip
Set the shipping to location.
String
Last updated
Was this helpful?