Skip to main content
POST
/
api
/
influenster
/
products
/
search
/influenster/products/search
curl --request POST \
  --url https://api.anysite.io/api/influenster/products/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 250,
  "timeout": 300,
  "keyword": "mascara",
  "categories": [
    "Mascara"
  ]
}
'
[
  {
    "id": 123,
    "name": "<string>",
    "@type": "InfluensterSearchProduct",
    "brand_name": "<string>",
    "average_stars": 123,
    "review_count": 123,
    "image": "<string>",
    "alias": "<string>",
    "category_names": [],
    "url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Number of products to return

Required range: 1 <= x <= 500
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
keyword
string | null

Search keyword

Minimum string length: 1
Example:

"mascara"

categories
string[] | null

Filter by Influenster product category names (root or leaf), e.g. 'Mascara', 'Beauty', 'Foundations & Concealers'. Multiple categories are combined together.

Example:
["Mascara"]

Response

Successful Response

id
integer
required
name
string
required
@type
string
default:InfluensterSearchProduct
brand_name
string | null
average_stars
number | null
review_count
integer | null
image
string | null
alias
string | null
category_names
string[]
url
string | null