anthropologie.com APIanthropologie.com ↗
Access Anthropologie sale listings, product details, discount stats, and keyword search via 5 structured endpoints. Real-time pricing, ratings, and availability.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/8670912f-8c8b-41c1-af3f-70e3e4439536/get_sale_product_count' \ -H 'X-API-Key: $PARSE_API_KEY'
Get the total number of products currently on sale at Anthropologie.
No input parameters required.
{
"type": "object",
"fields": {
"total_products": "integer total number of sale products"
},
"sample": {
"data": {
"total_products": 4614
},
"status": "success"
}
}About the anthropologie.com API
The Anthropologie API covers 5 endpoints that expose sale inventory, product details, and search results from Anthropologie.com. The get_sale_products endpoint returns paginated sale listings — up to 72 items per page — including current price, original price, and discount percentage. The get_product_details endpoint adds brand, color options, average rating, review count, and availability for any individual product URL.
Sale Browsing and Discount Data
The get_sale_product_count endpoint returns a single integer — the total number of products currently marked down — useful for gauging the size of an active promotion before fetching full listings. get_sale_products accepts an optional page integer and returns up to 72 products per page, each with name, url, current_price, original_price, and discount_percent. To measure the depth of a sale, calculate_discount_stats accepts a max_pages parameter and aggregates across multiple pages, returning total_products_analyzed and average_discount_percentage.
Product Search and Detail
search_products takes a required query string — for example 'linen dress' or 'denim jacket' — and returns matching products with name, url, and price. It does not filter by category or price range at the parameter level, so downstream filtering must be done on the response array. get_product_details accepts either a full product URL or a relative path and returns a richer set of fields: brand, category, description, colors (array), is_available (boolean), current_price, average_rating, and review_count.
Coverage Notes
All pricing fields are numbers (not formatted strings), making arithmetic straightforward. The colors field is an array, so products with multiple colorways each list their available options. Availability reflects stock status at retrieval time. Sale data represents the current active promotion and will change as Anthropologie adds or removes discounted items.
- Track average discount depth across Anthropologie's sale section using
calculate_discount_statsover time - Build a deal alert that fires when
get_sale_product_countexceeds a threshold - Populate a price-comparison tool with
current_priceandoriginal_pricefromget_sale_products - Search for a specific product type (e.g., 'maxi skirt') and retrieve pricing via
search_products - Monitor product availability changes using the
is_availablefield fromget_product_details - Aggregate review counts and average ratings across multiple products to identify best-reviewed items on sale
- Compile a markdown catalog of discounted items with names, URLs, and savings percentages for a newsletter or affiliate site
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Anthropologie have an official developer API?+
What does `get_sale_products` return, and how much data comes back per page?+
name, url, current_price, original_price, and discount_percent. Use the page parameter to paginate through the full sale catalog.Does `search_products` support filtering by price range, category, or color?+
search_products endpoint takes only a query string and returns name, url, and price for matching results. It does not accept price-range, category, or color filters as parameters. You can fork this API on Parse and revise it to add a filtering endpoint that post-processes results or targets a specific category URL.Does the API cover Anthropologie's full product catalog or only sale items?+
get_sale_products and related endpoints) and keyword search (via search_products), plus detail retrieval for any product URL via get_product_details. Full catalog browsing by category or new arrivals is not currently covered. You can fork the API on Parse and revise it to add endpoints for non-sale category pages.How fresh is the sale and pricing data?+
get_sale_product_count and get_sale_products results can change between calls. There is no cached snapshot — each call retrieves current data.