Skip to main content
POST
/
api
/
influenster
/
brands
/
products
/influenster/brands/products
curl --request POST \
  --url https://api.anysite.io/api/influenster/brands/products \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "brand": "<string>",
  "count": 2,
  "timeout": 300,
  "sort": "new"
}
'
[
  {
    "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
brand
string
required

Brand slug, numeric brand id, or full brand-page URL

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

"maybelline"

"58163"

count
integer
required

Number of products 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

Product sort order

Available options:
new,
trending,
top

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