Skip to main content
POST
/
api
/
asos
/
products
/asos/products
curl --request POST \
  --url https://api.anysite.io/api/asos/products \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@asos_product",
    "product_code": "<string>",
    "url": "<string>",
    "alias": "<string>",
    "title": "<string>",
    "brand": "<string>",
    "brand_id": 123,
    "gender": "<string>",
    "product_type": "<string>",
    "fit_type": "<string>",
    "price": 123,
    "list_price": 123,
    "currency": "<string>",
    "save_percent": 123,
    "is_on_sale": true,
    "is_in_stock": true,
    "is_selling_fast": true,
    "save_count": 123,
    "image": "<string>",
    "images": [],
    "video_url": "<string>",
    "description": "<string>",
    "country_of_manufacture": "<string>",
    "rating": 123,
    "review_count": 123,
    "recommended_percentage": 123,
    "rating_distribution": [],
    "sub_ratings": [],
    "reviews_summary": "<string>",
    "reviews": [],
    "sizes": [],
    "colours": [],
    "total_colour_count": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
product
string
required

ASOS product ID or a product URL containing it

Minimum string length: 1
Examples:

"206776454"

"https://www.asos.com/prd/206776454"

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
product_code
string | null
url
string | null
alias
string | null
title
string | null
brand
string | null
brand_id
integer | null
gender
string | null
product_type
string | null
fit_type
string | null
price
number | null
list_price
number | null
currency
string | null
save_percent
integer | null
is_on_sale
boolean | null
is_in_stock
boolean | null
is_selling_fast
boolean | null
save_count
integer | null
image
string | null
images
string[]
video_url
string | null
description
string | null
country_of_manufacture
string | null
rating
number | null
review_count
integer | null
rating_distribution
AsosProductRatingDistribution · object[]
sub_ratings
AsosProductSubRating · object[]
reviews_summary
string | null
reviews
AsosProductEmbeddedReview · object[]
sizes
AsosProductSize · object[]
colours
AsosProductColour · object[]
total_colour_count
integer | null