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
3mo 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
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 →
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.
bilbasen.dk API
Search Denmark's largest car marketplace to find vehicles by make and model, then access detailed pricing and technical specifications including emissions, weight, MSRP, battery size, and equipment details. Get comprehensive car listings and full specs to compare vehicles on Bilbasen.dk.
jula.fi API
Search and browse products from Jula.fi to find hardware items with detailed information including prices (with and without VAT), stock availability, brand details, and product SKUs. Explore products by category or search for specific items to compare pricing and check real-time stock status.
leroymerlin.fr API
Search and browse Leroy Merlin France's complete product catalog to find items by category, view pricing, product details, and compare offerings from Leroy Merlin and their online partners. Access real-time product information including names, IDs, URLs, and seller details to help you discover and evaluate home improvement and DIY products.
industrynet.com API
Find industrial suppliers and browse product categories across a comprehensive marketplace directory. Connect directly with suppliers by viewing detailed listings and submitting contact inquiries programmatically.
carsforsale.com API
Search vehicle listings and browse detailed car inventory by make, model, and trim to find the perfect vehicle on CarsForSale.com. Access comprehensive listing details including pricing, specifications, and availability all in one place.
vivino.com API
Search and discover wines across thousands of options while accessing detailed information like user reviews, pricing, winery profiles, and food pairing recommendations. Explore grape varieties, compare wines side-by-side, and find the perfect bottle based on ratings and availability.
x-kom.pl API
Access product data from x-kom.pl, a major Polish electronics retailer. Search products by keyword or category, retrieve detailed product pages, customer reviews, Q&A, promotions, flash deals, and physical store locations.
Lookfantastic API – Products, Prices & Reviews · Parse