Get ASOS data with one API
The ASOS API returns fashion product data from ASOS as clean JSON.
11 active endpoints. Every call is 1 credit.
- POST/asos/v1/search
- POST/asos/v1/category
- POST/asos/v1/sale
- POST/asos/v1/new_in
- POST/asos/v1/product
- POST/asos/v1/products
- POST/asos/v1/navigation
- +4 more
What ASOS endpoints does ReefAPI ship?
11 live read endpoints. Read-only data API: no writes, no account actions, no dashboard access on the target site.
ASOS API
3 of 11 endpoints, ready to run
Keyword product search across the ASOS catalogue with filters (price, brand, colour, size, pr…
// Press "Try it" and this pane shows exactly what the // live site returned this second — including an empty // result, if that is the truth. No key, no account.
How the ASOS API works
ASOS is a normal ReefAPI surface — the same four rules that hold for every other engine on the key.
No OAuth app, no request signing, no per-site account. One key covers all 185 engines.
Every route is a POST with a JSON body. Parameters are validated against the published schema before anything is charged.
Credits, not seats. Failed and blocked calls are never charged, and cache hits cost nothing.
One envelope everywhere. meta carries latency_ms, record_count and the endpoint that answered.
ASOS ids, stores and the four numbers on one product
A single ASOS garment carries four different identifiers, and one of them changes meaning between actions. The store parameter is what sets the currency, and one value in the enum does not work at all. Everything below was measured on 2026-08-27, mostly against product 210791038, a Bershka halter midi dress.
| Field or value | What it identifies | Measured value |
|---|---|---|
| id | The colourway-level product, the number after /prd/ in the URL | 210791038 |
| colour_way_id | Which colour the row is showing. Present on search rows, null on the product action | 210791039 |
| product_code | ASOS's internal style code. A string on product, an integer on search | "156679606" |
| variants[].id | One size of one colour | 210791040, for size XS - UK 6 |
| variants[].sku | That size's stock-keeping code | "156679614" |
| variants[].ean | 13-digit retail barcode for that size | "8447489469461" |
| variants[].size vs brand_size | ASOS's own size label vs the brand's label | "XS - UK 6" vs "XS" |
| variants[].seller | Partner that fulfils the order. null when ASOS holds the stock itself | {"id": "BRKAFS", "description": "BERSHKA UK LTD"} |
| store=COM / GB | UK and international. COM is the default | currency GBP, prices formatted "£27.99" |
| store=US | United States | currency USD, prices formatted "$157.00" |
| store=DE / FR | Germany and France | currency EUR, current_text "64,99 €" with current_value 64.99 |
| store=ROW | Rest of World. Offered in the enum but not usable | ASOS answered HTTP 400, returned as INVALID_PARAM |
current_text is formatted the way that store formats money, comma-decimal included, while current_value is always a plain number. On the product action watch meta.stockprice: "v4_matched_12" means live per-size price and stock were matched for 12 variants, and "unavailable" means they were not and the prices you are looking at are the ones embedded in the page.
What people build with ASOS
The jobs this data is most often used for.
endpoints
credit per call
Fashion-pricing tools call search and sale to track ASOS prices and markdowns by brand.
Catalog-enrichment products use product to fill listings with images, colours and variants.
Retail analysts use new_in and facets to spot trending brands and categories.
What ASOS data costs
The cheapest call here is 1 credit, so $15/mo (Pro) buys 10,000 of them — $1.50 per 1,000 credits. Credits roll over and never expire, and failed or blocked calls are not charged.
Full pricing →- 1,000 free credits on signup, no card
- One key, all 185 APIs, one credit pool
- Failed and blocked calls are never charged
- Credits roll over and never expire
Call it in two lines
Sign up, get 1,000 credits and one key that works on every engine. Then this is the whole protocol.
curl -X POST https://api.reefapi.com/asos/v1/search \
-H "x-api-key: $REEF_KEY" \
-H "content-type: application/json" \
-d '{"query":"dress"}'import requests
r = requests.post(
"https://api.reefapi.com/asos/v1/search",
headers={"x-api-key": REEF_KEY},
json={
"query": "dress"
},
)
print(r.json()["data"])Have a question? We got answers.
The questions people actually ask before wiring up ASOS.
Get a free key →What is the difference between an ASOS product id, product_code and sku?▾
id is the product as ASOS links to it, and it is colour-level: 210791038 is the yellow colourway of that dress. product_code ("156679606") is the internal style code. sku is per size, so the XS is "156679614", and each size also has its own 13-digit ean ("8447489469461") and its own numeric variant id (210791040). Fetch by id, match against a warehouse feed by sku or ean.
Which ASOS store codes actually return data, and what currency does each give?▾
Measured on 2026-08-27: COM and GB return GBP, US returns USD, DE and FR return EUR. ROW is offered in the enum but ASOS answered HTTP 400 and the call came back as INVALID_PARAM, so treat it as unusable. The default is COM. The store changes the assortment too, not just the money: the same query reported 21,417 results on GB and 100 on FR.
Why did asking for store=US return a price in GBP?▾
Because that product is not sold in the US store, so the live per-store price and stock lookup found nothing and the response fell back to the price embedded in the product page. The tell is meta.stockprice: it read "unavailable" on that call, against "v4_matched_5" for the same product with store=COM. When you request a market, check that field before trusting price.currency.
Is price.previous_value the was-price?▾
Only when is_marked_down is true. On the product action a full-price item returns previous_value equal to current_value (27.99 and 27.99), while search returns previous_value null for the same item. On a marked-down item the actions agree: 210882523 came back as current 17.99, previous 29.99, is_marked_down true. So branch on is_marked_down rather than on whether previous_value is present.
How do I see which sizes are in stock?▾
variants[] carries in_stock per size, plus is_low_in_stock and is_restocking_soon. On product 210791038 the XS and S variants were in_stock true while M - UK 10 was false, even though the product-level in_stock was true. Product-level in_stock means at least one size is available, so read the variant rows whenever size matters.
What does a populated variants[].seller mean?▾
It means a partner brand fulfils the order rather than ASOS shipping from its own stock. The Bershka dress returned seller {"id": "BRKAFS", "description": "BERSHKA UK LTD"} on every size, while a Never Fully Dressed item on the US store returned seller null on its variants. The id is a short alphanumeric partner code, not a numeric account id.
What happens if I pass a brand name ASOS does not recognise?▾
You get an empty result set, not an error. Brand names are resolved to ASOS facet ids before the search runs, so a misspelling like 'Nikeee' resolved to nothing and the call returned ok true with total 0 and no products. Call the filters action first to list the brand, colour and size facets a query actually supports.
Why does colour_way_id come back null on the product action?▾
The product action returns the garment as a whole and hangs colour information off each variant row instead, so the top-level colour_way_id is null while every variant carries its own (210791039 on that dress). Search rows do fill the top-level field, because a search row is one colourway. If you need it from the product action, read variants[0].colour_way_id.
What is the ASOS API?▾
ASOS API is a ReefAPI endpoint group for asos It returns live JSON through POST requests under /asos/v1.
Is the ASOS API free to try?▾
Yes. ReefAPI starts with 1,000 free credits, no card required. ASOS calls use the same shared credit balance as every other ReefAPI engine.
Do I need an ASOS login or account?▾
No login to ASOS is needed for the API response. You call ReefAPI with your x-api-key header, and the playground can run live examples before you create a production key.
How fresh is the ASOS data?▾
The page example is captured from a live search call, and production requests fetch live data through ReefAPI rather than a static sample.
How many credits does the ASOS API use?▾
ASOS actions currently cost 1 credit per successful call. Failed or blocked calls are free, and all APIs draw from one credit pool.
Can I call ASOS from an AI assistant or MCP client?▾
Yes. Connect ReefAPI once through MCP and your assistant can call asos actions with the same key, credit pool and JSON envelope used by normal REST requests.
37 E-commerce & Marketplaces APIs on the same key
One key, one credit pool, one response envelope. If you are pulling ASOS, you are one call away from the rest of the category — no second contract, no second integration.
Try it on your own data before you pay anything
The call above is the real endpoint, not a recording. A free key gives you 1,000 credits, the other 184 APIs, and the same envelope everywhere.
Endpoints, parameters and credit costs on this page are read from the live catalog and cannot drift from what the API accepts.