Skip to main content
POST
/
api
/
influenster
/
products
/
reviews
/influenster/products/reviews
curl --request POST \
  --url https://api.anysite.io/api/influenster/products/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "count": 2,
  "timeout": 300,
  "sort": "new"
}
'
[
  {
    "id": 123,
    "@type": "InfluensterReview",
    "review_title": "<string>",
    "text": "<string>",
    "stars": 123,
    "like_count": 123,
    "is_incentivized": false,
    "created_at": "<string>",
    "updated_at": "<string>",
    "user": {
      "id": 123,
      "@type": "InfluensterReviewUser",
      "short_name": "<string>",
      "image": "<string>",
      "is_pro": false
    },
    "images": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
product
string
required

Product slug, numeric product id, or full product review-page URL

Minimum string length: 1
Pattern: ^(?:https?://\S+|[^/\s][^\s]*)$
Examples:

"maybelline-new-york-great-lash-mascara"

"1382772"

count
integer
required

Number of reviews to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
sort
enum<string>
default:new

Review sort order

Available options:
new,
trending,
top

Response

Successful Response

id
integer
required
@type
string
default:InfluensterReview
review_title
string | null
text
string | null
stars
integer | null
like_count
integer | null
is_incentivized
boolean
default:false
created_at
string | null
updated_at
string | null
user
object | null
images
string[]