Skip to main content
POST
/
api
/
influenster
/
products
/influenster/products
curl --request POST \
  --url https://api.anysite.io/api/influenster/products \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "timeout": 300
}
'
[
  {
    "id": 123,
    "name": "<string>",
    "@type": "InfluensterProduct",
    "alias": "<string>",
    "brand": {
      "id": 123,
      "name": "<string>",
      "@type": "InfluensterProductBrand",
      "alias": "<string>"
    },
    "category": {
      "id": 123,
      "name": "<string>",
      "@type": "InfluensterProductCategory"
    },
    "average_stars": 123,
    "review_count": 123,
    "media_count": 123,
    "description": "<string>",
    "image": "<string>",
    "one_star_count": 123,
    "two_star_count": 123,
    "three_star_count": 123,
    "four_star_count": 123,
    "five_star_count": 123,
    "url": "<string>"
  }
]

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:

"mini-better-than-sex-volumizing-mascara"

"507842"

"https://www.influenster.com/reviews/mini-better-than-sex-volumizing-mascara"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
name
string
required
@type
string
default:InfluensterProduct
alias
string | null
brand
object | null
category
object | null
average_stars
number | null
review_count
integer | null
media_count
integer | null
description
string | null
image
string | null
one_star_count
integer | null
two_star_count
integer | null
three_star_count
integer | null
four_star_count
integer | null
five_star_count
integer | null
url
string | null