Skip to main content
POST
/
api
/
target
/
products
/target/products
curl --request POST \
  --url https://api.anysite.io/api/target/products \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@target_product",
    "url": "<string>",
    "alias": "<string>",
    "title": "<string>",
    "brand": "<string>",
    "brand_url": "<string>",
    "price": 123,
    "list_price": 123,
    "currency": "<string>",
    "save_percent": 123,
    "is_on_sale": true,
    "image": "<string>",
    "images": [],
    "videos": [],
    "rating": 123,
    "rating_count": 123,
    "review_count": 123,
    "question_count": 123,
    "recommended_percentage": 123,
    "rating_five_count": 123,
    "rating_four_count": 123,
    "rating_three_count": 123,
    "rating_two_count": 123,
    "rating_one_count": 123,
    "secondary_ratings": [],
    "description": "<string>",
    "specifications": [],
    "features": [],
    "breadcrumbs": [],
    "category": "<string>",
    "category_id": "<string>",
    "item_type": "<string>",
    "department": "<string>",
    "import_designation": "<string>",
    "is_free_shipping": true,
    "badges": [],
    "return_policies": [],
    "variants": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
product
string
required

Target product TCIN or a product URL containing it

Minimum string length: 1
Examples:

"91466170"

"A-91466170"

"https://www.target.com/p/-/A-91466170"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@target_product
url
string | null
alias
string | null
title
string | null
brand
string | null
brand_url
string | null
price
number | null
list_price
number | null
currency
string | null
save_percent
number | null
is_on_sale
boolean | null
image
string | null
images
string[]
videos
TargetProductVideo · object[]
rating
number | null
rating_count
integer | null
review_count
integer | null
question_count
integer | null
rating_five_count
integer | null
rating_four_count
integer | null
rating_three_count
integer | null
rating_two_count
integer | null
rating_one_count
integer | null
secondary_ratings
TargetProductSecondaryRating · object[]
description
string | null
specifications
TargetProductSpecification · object[]
features
string[]
breadcrumbs
string[]
category
string | null
category_id
string | null
item_type
string | null
department
string | null
import_designation
string | null
is_free_shipping
boolean | null
badges
string[]
return_policies
TargetProductReturnPolicy · object[]
variants
TargetProductVariant · object[]