Target
Target Product API
Full Target.com product detail by TCIN: price and regular price, sale and savings, rating with its full star breakdown, every image, highlights, bullets, the specification table, variants, dimensions and weight, shipping exclusions and the return policy. Prices and availability reflect the store you pass in store_id. Costs 1 credit per request.
Authorizations
AuthorizationstringheaderrequiredBearer authentication header of the form Bearer <token>, where <token> is your Scavio API key (e.g. Bearer sk_live_your_key).
Body
application/jsontcinstringrequiredTarget catalog id (TCIN) - the number after A- in a target.com /p/ URL. A colour or size child TCIN is answered by its variation parent, with the child itself present in variants.
Example: 83780372
store_idstringdefault:3991Numeric Target store id whose prices and availability the response reflects, echoed back in the response. 3991 is the store target.com itself uses with no store context. Unlike Walmart, this is a real request parameter here.
Example: 3991
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
product = client.target.product("83780372")
print(product)Response