Discover/Target API
live

Target 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.

Endpoint health
verified 2d ago
check_store_availability
search_products
2/2 passing latest checkself-healing
Endpoints
2
Updated
22d ago

What is the Target 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.

Try it
5-digit US ZIP code for local pricing and store availability
Number of results per page (max 24)
Offset for pagination (0-based)
Search keyword (e.g. 'airpods', 'nintendo switch')
Sort order for results
api.parse.bot/scraper/9935e57e-18c2-4c7c-aebe-bc311e983dc8/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/9935e57e-18c2-4c7c-aebe-bc311e983dc8/search_products?zip=10001&count=5&offset=0&keyword=airpods&sort_by=relevance' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace target-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Target.com SDK — search products, check store availability."""
from parse_apis.target.com_product_search_store_availability_api import Target, Sort, ProductNotFound

client = Target()

# Search for products by keyword, sorted by bestselling
for product in client.products.search(keyword="airpods", sort_by=Sort.BESTSELLING, limit=3):
    print(product.title, product.price, product.brand)

# Drill down: take one product and check its in-store availability
product = client.products.search(keyword="nintendo switch", limit=1).first()
if product:
    avail = product.check_availability(zip="10001")
    print(avail.product.title, avail.product.sold_out)
    print(avail.product.shipping.status, avail.product.shipping.min_delivery_date)
    for store in avail.product.stores[:3]:
        print(store.store_name, store.in_store, store.quantity_available)

# Typed error handling: catch ProductNotFound for an invalid TCIN
try:
    bad_product = client.product(tcin="0000000000")
    bad_product.check_availability(zip="90210")
except ProductNotFound as exc:
    print(f"Product not found: {exc.tcin}")

print("exercised: products.search / product.check_availability / ProductNotFound")
All endpoints · 2 totalmissing one? ·

Full-text search over Target.com product catalog by keyword. Returns paginated product listings with pricing, ratings, brand, and availability metadata. Server-side sort controls result ordering. Pagination uses offset-based addressing where each page holds up to `count` items.

Input
ParamTypeDescription
zipstring5-digit US ZIP code for local pricing and store availability
countintegerNumber of results per page (max 24)
offsetintegerOffset for pagination (0-based)
keywordrequiredstringSearch keyword (e.g. 'airpods', 'nintendo switch')
sort_bystringSort order for results
Response
{
  "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": "airpods",
      "products": [
        {
          "url": "https://www.target.com/p/apple-airpods-max-160-2-160-midnight/-/A-80585769",
          "tcin": "80585769",
          "brand": "Apple",
          "price": "$499.99",
          "title": "Apple AirPods Max 2 - Midnight",
          "rating": null,
          "image_url": "",
          "item_type": "Headphones",
          "price_type": "sale",
          "parent_tcin": "1010453160",
          "parent_title": "Apple AirPods Max 2",
          "rating_count": null,
          "save_percent": 9,
          "regular_price": "$549.99",
          "current_retail": 499.99
        }
      ],
      "total_pages": 21,
      "current_page": 1,
      "total_results": 491
    },
    "status": "success"
  }
}

About the Target API

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.

Reliability & maintenanceVerified

The Target API is a managed, monitored endpoint for target.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when target.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official target.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
2d ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Alert users when a specific product's sold_out status changes at a local Target store
  • Compare price vs regular_price across search results to identify active markdowns and compute save_percent
  • Build a price-tracking tool using keyword search sorted by PriceLow or PriceHigh
  • Check store availability across multiple ZIP codes to find the nearest location with a product in stock
  • Aggregate Target product listings by brand for competitive catalog research
  • Monitor bestselling sort results over time to detect trending products in a category
  • Cross-reference current_retail and regular_price data to surface clearance items
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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.

Frequently asked questions
Does Target have an official developer API?+
Target does not offer a publicly documented developer API for product search or store inventory. There is no official API key program or developer portal for third-party access to catalog or availability data.
What does the `check_store_availability` endpoint actually return per store?+
For each of up to 5 nearby stores, the response includes availability status, stock quantity, and estimated pickup dates. The store data is nested inside the 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?+
The 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?+
The 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?+
The 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.
Page content last updated . Spec covers 2 endpoints from target.com.
Related APIs in EcommerceSee all →
cvs.com API
Find nearby CVS Pharmacy locations and check their hours, then search for products and verify real-time availability at specific stores. Quickly locate what you need and confirm it's in stock before making a trip.
homedepot.com API
Search and browse Home Depot's product catalog to compare pricing, check real-time availability, and review detailed product specifications. Find products across all categories, look up store locations and hours, and check fulfillment options including in-store pickup and delivery.
instacart.com API
Search for grocery products across multiple retailers, view store locations and availability, and access detailed product information including prices and descriptions. Find the best deals and nearest stores offering the items you need.
containerstore.com API
Search The Container Store's product catalog and get real-time autocomplete suggestions to find storage solutions and organizational products. Browse through available items with instant search results and product recommendations as you type.
petsmart.com API
Search for pet products, browse categories, and get detailed information including reviews all in one place, while also finding nearby PetSmart stores and exploring pet taxonomy to discover products tailored to your pet type. Quickly compare products, read customer feedback, and locate your nearest store to shop for everything your pet needs.
hm.com API
Search H&M's US product catalog by keyword and instantly retrieve detailed information like prices, product images, available sizes, and real-time stock availability. Perfect for comparing items, tracking product details, or building shopping applications powered by H&M's current inventory data.
zara.com API
Shop Zara's entire catalog by browsing categories, searching for specific items, and viewing detailed product information including measurements and related products. Find nearby store locations, check real-time inventory availability, and get shipping details all in one place.
ikea.com API
Search and browse IKEA's full product catalog to find items by category, compare measurements, read customer reviews, and check real-time store availability and current deals. Discover new arrivals and best-selling products to help you shop smarter and find exactly what you need.