Skip to main content
POST
/
api
/
target
/
products
/
reviews
/target/products/reviews
curl --request POST \
  --url https://api.anysite.io/api/target/products/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@target_product_review",
    "rating": 123,
    "title": "<string>",
    "text": "<string>",
    "author": "<string>",
    "is_syndicated": true,
    "source": "<string>",
    "submitted_at": "<string>",
    "created_at": "<string>",
    "updated_at": "<string>"
  }
]

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"

count
integer
required

Max number of reviews to return

Required range: x >= 1
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_review
rating
number | null
title
string | null
text
string | null
author
string | null
is_syndicated
boolean | null
source
string | null
submitted_at
string | null
created_at
string | null
updated_at
string | null