Skip to main content
POST
/
api
/
asos
/
products
/
search
/asos/products/search
curl --request POST \
  --url https://api.anysite.io/api/asos/products/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "keyword": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@asos_product_card",
    "product_code": "<string>",
    "url": "<string>",
    "alias": "<string>",
    "title": "<string>",
    "brand": "<string>",
    "colour": "<string>",
    "price": 123,
    "list_price": 123,
    "currency": "<string>",
    "is_on_sale": true,
    "is_selling_fast": true,
    "has_more_colours": true,
    "image": "<string>",
    "images": [],
    "video_url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
keyword
string
required

Search keyword

Minimum string length: 1
Examples:

"dress"

"running shoes"

count
integer
required

Max number of products to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@asos_product_card
product_code
string | null
url
string | null
alias
string | null
title
string | null
brand
string | null
colour
string | null
price
number | null
list_price
number | null
currency
string | null
is_on_sale
boolean | null
is_selling_fast
boolean | null
has_more_colours
boolean | null
image
string | null
images
string[]
video_url
string | null