target.com APItarget.com ↗
Search Target's product catalog by keyword and check real-time in-store availability at nearby Target locations by ZIP code. Returns prices, ratings, and stock.
curl -X GET 'https://api.parse.bot/scraper/9935e57e-18c2-4c7c-aebe-bc311e983dc8/search_products?keyword=airpods' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for products on Target.com by keyword. Returns product listings with prices, ratings, images, and brand info. Supports pagination and sorting.
| Param | Type | Description |
|---|---|---|
| zip | string | 5-digit US ZIP code for local pricing and store availability |
| count | integer | Number of results per page (max 24) |
| offset | integer | Offset for pagination (0-based) |
| keywordrequired | string | Search keyword (e.g. 'airpods', 'nintendo switch') |
| sort_by | string | Sort order. Accepted values: relevance, Featured, bestselling, newest, Newest, PriceLow, PriceHigh |
{
"type": "object",
"fields": {
"count": "integer - number of results returned",
"offset": "integer - current offset",
"keyword": "string - the search keyword used",
"products": "array of product objects with tcin, title, url, image_url, brand, price, regular_price, price_type, current_retail, save_percent, rating, rating_count, item_type",
"total_pages": "integer - total pages available",
"current_page": "integer - current page number",
"total_results": "integer - total number of matching products"
},
"sample": {
"data": {
"count": 24,
"offset": 0,
"keyword": "nintendo switch",
"products": [
{
"url": "https://www.target.com/p/nintendo-switch-2-console/-/A-94693225",
"tcin": "94693225",
"brand": "Nintendo",
"price": "$449.99",
"title": "Nintendo Switch 2 Console",
"rating": 3.6,
"image_url": "",
"item_type": "Video Game Consoles",
"price_type": "reg",
"rating_count": 745,
"save_percent": null,
"regular_price": "",
"current_retail": 449.99
}
],
"total_pages": 50,
"current_page": 1,
"total_results": 2373
},
"status": "success"
}
}About the target.com API
The Target.com API provides 2 endpoints for searching Target's product catalog and checking in-store stock availability. The search_products endpoint returns up to 24 products per page with fields including price, brand, ratings, and TCIN identifiers, while check_store_availability uses those TCINs to surface per-store stock levels and pickup timing at up to 5 nearby locations based on a ZIP code.
Product Search
The search_products endpoint accepts a required keyword parameter and returns a paginated list of matching products from Target's catalog. Each product object includes tcin (Target's internal product ID), title, url, image_url, brand, price, regular_price, price_type, current_retail, and save_percent. Pagination is controlled via offset (0-based) and count (up to 24 per page), with total_results, total_pages, and current_page returned in every response. Results can be sorted using the sort_by parameter with accepted values of relevance, Featured, bestselling, PriceLow, PriceHigh, and Newest. An optional zip parameter adjusts pricing and availability context to a specific US location.
Store Availability
The check_store_availability endpoint takes a tcin obtained from search_products results and an optional 5-digit zip to find nearby Target stores. The response includes a product object with the tcin, title, url, sold_out flag, shipping status, and a stores array showing per-store availability — including stock quantity and pickup date estimates for up to 5 stores near the provided ZIP. This makes it straightforward to build workflows that first identify a product by keyword and then verify local stock before acting.
- Alert users when a specific product's
sold_outstatus changes at a local Target store - Compare
pricevsregular_priceacross search results to identify active markdowns and computesave_percent - Build a price-tracking tool using
keywordsearch sorted byPriceLoworPriceHigh - Check
store availabilityacross multiple ZIP codes to find the nearest location with a product in stock - Aggregate Target product listings by
brandfor competitive catalog research - Monitor
bestsellingsort results over time to detect trending products in a category - Cross-reference
current_retailandregular_pricedata to surface clearance items
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Target have an official developer API?+
What does the `check_store_availability` endpoint actually return per store?+
stores array within the product object, which also carries top-level sold_out and shipping status fields.Does the API return product reviews or customer ratings?+
search_products endpoint returns rating data as part of each product object. However, individual review text, review counts broken out by star rating, and Q&A content are not currently returned. You can fork the API on Parse and revise it to add an endpoint covering review details for a given TCIN.Is availability data limited to in-store pickup, or does it cover shipping estimates too?+
check_store_availability response includes a shipping status field on the product object alongside the per-store pickup data. Detailed carrier-level shipping estimates or delivery windows by ZIP are not currently broken out as separate fields. You can fork the API on Parse and revise it to expose more granular shipping timeline data.What is the maximum number of results I can retrieve per search request?+
count parameter accepts a maximum of 24 results per page. To retrieve more results, increment the offset parameter using the total_pages and current_page values returned in each response to navigate through the full result set.