Skip to main content
POST
/
api
/
petsplace
/
brands
/
search
/petsplace/brands/search
curl --request POST \
  --url https://api.anysite.io/api/petsplace/brands/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "keyword": "",
  "sort": "popularity"
}
'
[
  {
    "name": "<string>",
    "@type": "@petsplace_brand",
    "alias": "<string>",
    "product_count": 0,
    "image": "<string>",
    "url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Max number of results to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
keyword
string
default:""

Filter brands by name (case-insensitive substring). Leave empty to list all brands.

Examples:

"royal"

"trixie"

"hill"

sort
enum<string>
default:popularity

Result ordering

Available options:
popularity,
name

Response

Successful Response

name
string
required
@type
string
default:@petsplace_brand
alias
string | null
product_count
integer
default:0
image
string | null
url
string | null