Skip to main content
POST
/
api
/
influenster
/
brands
/influenster/brands
curl --request POST \
  --url https://api.anysite.io/api/influenster/brands \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "brand": "<string>",
  "timeout": 300
}
'
[
  {
    "id": 123,
    "name": "<string>",
    "@type": "InfluensterBrand",
    "alias": "<string>",
    "product_count": 123,
    "image": "<string>",
    "category_names": [],
    "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"

"https://www.influenster.com/brand/maybelline"

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:InfluensterBrand
alias
string | null
product_count
integer | null
image
string | null
category_names
string[]
url
string | null