Discover/lookfantastic.com API
live

lookfantastic.com APIlookfantastic.com

Extract beauty product listings, prices, ratings, reviews, and ingredient lists from lookfantastic.com via 2 structured API endpoints.

Endpoints
2
Updated
4mo ago
Try it
Page number for pagination.
Number of products to return per page.
Full URL of the category page to extract products from (e.g. https://www.lookfantastic.com/c/health-beauty/face/skincare-products/).
api.parse.bot/scraper/f44426d1-73c0-4eff-af36-72d6420d31f3/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/f44426d1-73c0-4eff-af36-72d6420d31f3/list_products?page=1&limit=3&category_url=https%3A%2F%2Fwww.lookfantastic.com%2Fc%2Fhealth-beauty%2Fface%2Fskincare-products%2F' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 2 totalclick to expand

Extract product listings from a category page on lookfantastic.com. Returns product name, brand, price, ratings, reviews, ingredient list, directions, and images for each product. Products are extracted from the page and paginated locally.

Input
ParamTypeDescription
pageintegerPage number for pagination.
limitintegerNumber of products to return per page.
category_urlrequiredstringFull URL of the category page to extract products from (e.g. https://www.lookfantastic.com/c/health-beauty/face/skincare-products/).
Response
{
  "type": "object",
  "fields": {
    "page": "integer - Current page number",
    "limit": "integer - Products per page",
    "products": "array of product objects each containing sku, name, brand, url, price, ratings, reviews, ingredients, directions, images",
    "total_found": "integer - Total product SKUs found on the category page",
    "products_returned": "integer - Number of products in this response"
  },
  "sample": {
    "data": {
      "page": 1,
      "limit": 3,
      "products": [
        {
          "sku": 17753631,
          "url": "https://www.lookfantastic.com/p/the-inkey-list-oat-balm-cleanser-50ml/17753631/",
          "name": "The INKEY List Mini Oat Balm Cleanser 50ml",
          "brand": "The INKEY List",
          "price": {
            "amount": "8.0",
            "display": "£8.00",
            "currency": "GBP"
          },
          "images": [
            "https://static.thcdn.com/productimg/original/17753631-2595329300953117.jpg"
          ],
          "ratings": {
            "average": 4,
            "total_reviews": 2
          },
          "reviews": [
            {
              "id": "1219614893",
              "date": "2026-05-13",
              "title": "Great until they changed the formula",
              "author": "Amy962",
              "rating": 3,
              "content": null,
              "verified_purchase": false
            }
          ],
          "directions": "<ul><li>Daily as the first step...</li></ul>",
          "ingredients": "<p>Prunus Amygdalus Dulcis (Sweet Almond) Oil...</p>"
        }
      ],
      "total_found": 33,
      "products_returned": 3
    },
    "status": "success"
  }
}

About the lookfantastic.com API

The Lookfantastic API provides 2 endpoints to retrieve beauty product data from lookfantastic.com, covering everything from category-level listings to single-product detail pages. The list_products endpoint extracts multiple products from any category URL, returning SKU, brand, price, ratings, and full ingredient lists. The get_product_details endpoint goes deeper, adding verified purchase reviews, usage directions, and image URLs for a single product by SKU.

Category Listings with list_products

Pass any valid lookfantastic.com category URL to the category_url parameter and the endpoint returns an array of product objects. Each object includes sku, name, brand, url, price, ratings, reviews, ingredients, directions, and images. The page and limit parameters control pagination across the full result set, and total_found tells you how many SKUs were identified on the category page so you can calculate how many pages to iterate.

Single-Product Detail with get_product_details

The get_product_details endpoint accepts a numeric sku (taken from a product URL) and returns the complete data record for that product. The price field is an object with amount, currency, and display subfields. The ratings object exposes average score and total_reviews count. The reviews array contains individual review objects with id, title, author, rating, content, date, and a verified_purchase boolean — useful for filtering trustworthy reviews. Both ingredients and directions are returned as raw HTML strings or null when the source page does not carry them.

Data Coverage Notes

Ingredient lists and usage directions are product-level fields and can vary in availability depending on the brand and category. Image URLs are returned as an array, so products with multiple gallery images all appear in the response. Reviews are returned in the structure they appear on the product page; there is no built-in sort or filter parameter for reviews within the endpoint itself.

Common use cases
  • Build a beauty product comparison tool using price, ratings, and brand fields across multiple categories.
  • Monitor price changes on specific SKUs by polling get_product_details on a schedule.
  • Aggregate and analyze ingredient lists across skincare or haircare categories for formulation research.
  • Filter products by average rating using the ratings.average field returned from category listings.
  • Collect verified purchase reviews for sentiment analysis using the verified_purchase boolean in review objects.
  • Populate an affiliate product catalogue with images, descriptions, and live prices from category pages.
  • Track review volume growth over time using total_reviews from repeated calls to get_product_details.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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.

Frequently asked questions
Does lookfantastic.com have an official developer API?+
Lookfantastic does not publish a public developer API. There is no documented endpoint or API portal available to third-party developers.
What review data does `get_product_details` return, and can I filter reviews by rating or date?+
The endpoint returns an array of review objects, each containing id, title, author, rating, content, date, and a verified_purchase boolean. There are no built-in filter parameters for rating or date within the endpoint — filtering must be done client-side after retrieving the full reviews array.
Are ingredients and directions always present in the response?+
No. Both ingredients and directions are returned as HTML strings when the product page carries them, and as null when they are absent. Coverage depends on how completely the brand has populated the product page on lookfantastic.com.
Does the API cover lookfantastic.com sites for other regions, such as the US or EU storefronts?+
The API is designed around the main lookfantastic.com domain. Regional subdomains or country-specific storefronts are not explicitly covered as separate inputs. You can fork this API on Parse and revise it to target specific regional URLs if your use case requires a particular storefront.
Can I retrieve search results or filter products by price range through the API?+
The list_products endpoint extracts products from a category URL you supply — it does not expose search queries or server-side price filtering as parameters. Products returned reflect what appears on the given category page. You can fork this API on Parse and revise it to add a search-based endpoint or price-filter logic.
Page content last updated . Spec covers 2 endpoints from lookfantastic.com.
Related APIs in EcommerceSee all →
cultbeauty.co.uk API
Browse and search Cult Beauty's product catalog by category or brand, view detailed product information including ingredients and loyalty points, and read customer reviews. Discover new arrivals, sale items, and filter products to find exactly what you're looking for.
sephora.com API
Search and browse Sephora's product catalog to find detailed information about beauty items, including specifications, customer reviews, Q&A discussions, pricing, and real-time availability. Filter products by category or brand, and access comprehensive brand listings to discover exactly what you're looking for.
theordinary.com API
Browse and search The Ordinary's complete product catalog by category or ingredients. View detailed product information including formulas and key actives, apply filters by product type, concern, or ingredient, and read customer reviews to compare and evaluate products.
paulaschoice.com API
Search and explore Paula's Choice skincare products with detailed ingredient lists, allergen information, and skin type recommendations all in one place. Find best sellers, look up specific ingredient details, and discover products organized by category to build your perfect skincare routine.
ulta.com API
Search and browse Ulta Beauty's complete product catalog with real-time pricing and inventory information, then dive into detailed product specs including ingredients, usage instructions, and customer reviews. Find exactly what you're looking for across all beauty categories with comprehensive product data at your fingertips.
drunkelephant.com API
Search and browse Drunk Elephant's full product catalog by category or collection, view detailed product information including ingredients and specifications, and access customer ratings and reviews. Find the perfect skincare and beauty products for your needs with comprehensive product details and authentic customer feedback.
ecco-verde.it API
Browse and search the Ecco Verde natural beauty catalogue. Retrieve full product details including ingredients (INCI), variants, and attributes; search by keyword; explore products by category or brand; and fetch personalised product recommendations.
lowes.com API
Search and browse products from Lowe's, including product listings by category, detailed product information, and pricing. Retrieve comprehensive details on specific items to compare options and make informed purchasing decisions.