Discover/ecco-verde.it API
live

ecco-verde.it APIecco-verde.it

Access Ecco Verde's natural beauty catalogue via API. Retrieve product details, INCI ingredients, variants, category listings, brand data, and recommendations.

Endpoints
6
Updated
14d ago
Try it
Product slug in brand/product-name format (e.g. 'lavera/basis-sensitiv-moisture-care-shamp
api.parse.bot/scraper/4a3c5120-023b-4432-bfe6-bde945ba005e/<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/4a3c5120-023b-4432-bfe6-bde945ba005e/get_product_detail?slug=lavera%2Fbasis-sensitiv-moisture-care-shampoo-1' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 6 totalclick to expand

Get full product detail by slug. Returns product metadata, description, ingredients (INCI), attributes, variants, and internal IDs usable with get_product_recommendations.

Input
ParamTypeDescription
slugrequiredstringProduct slug in brand/product-name format (e.g. 'lavera/basis-sensitiv-moisture-care-shampoo-1').
Response
{
  "type": "object",
  "fields": {
    "id": "string — product ID",
    "name": "string — product name",
    "brand": "string — brand slug",
    "category": "string — internal category code",
    "variants": "array of variant objects with name, price, active",
    "attributes": "object — product attribute key-value pairs (e.g. EAN, content, type)",
    "shop_article_id": "string — internal article ID for recommendations",
    "summary_bullets": "array of strings — key product benefits",
    "shop_article_item_id": "string — internal article item ID for recommendations"
  },
  "sample": {
    "data": {
      "id": "LA-113919",
      "name": "basis sensitiv - Shampoo Idratante",
      "brand": "lavera",
      "category": "Category-",
      "variants": [
        {
          "name": "250 ml",
          "price": "€ 5,59(€ 22,36 / L)",
          "active": false
        },
        {
          "name": "Ricarica da 500 ml",
          "price": "€ 8,19(€ 16,38 / L)",
          "active": true
        }
      ],
      "attributes": {
        "EAN": "4021457655458",
        "Marca": "lavera",
        "Art.-Nr.": "LA-114052",
        "Contenuto": "500 ml"
      },
      "shop_article_id": "32785",
      "summary_bullets": [
        "Per capelli normali e secchi",
        "Con olio di jojoba bio e aloe vera bio",
        "Forma una delicata schiuma"
      ],
      "shop_article_item_id": "58692"
    },
    "status": "success"
  }
}

About the ecco-verde.it API

The Ecco Verde API provides 6 endpoints covering the full product catalogue of ecco-verde.it, Italy's natural and organic beauty retailer. Use get_product_detail to fetch complete product metadata including INCI ingredient lists, price variants, EAN codes, and internal IDs required for recommendations. Additional endpoints cover keyword search, category browsing, brand listing, and a hierarchical site navigation tree.

Product Data

get_product_detail accepts a slug in brand/product-name format and returns a detailed product record: name, brand, category, attributes (including EAN, content, and product type), an array of variants with per-variant pricing and active status, summary_bullets listing key benefits, and the shop_article_id / shop_article_item_id pair needed to call get_product_recommendations. Ingredients are returned as INCI data, making this endpoint useful for compliance and formulation analysis.

Search and Category Browsing

search_products accepts a query string — such as 'shampoo' or 'crema viso' — and returns up to 30 products per page with total_count for pagination planning. Each product record in search and category results includes id, name, brand, price_display, url, image, rating, review_count, and benefits. get_category_products works the same way but scoped to a category; it requires a slug parameter such as 'make-up/mascara' or 'viso/creme-viso', which you can obtain from list_categories.

Site Structure and Brands

list_categories returns the full navigation tree: mainItems with recursive submenu entries, helpItems for informational pages, and customerAreaPaths. The path values on mainItems feed directly into get_category_products as the slug parameter. list_brands returns every brand on the site as an array of objects with ArticleEntry_Menu_Title (display name) and ArticleEntry_Path (URL path), providing a complete brand inventory without needing to crawl category pages.

Recommendations

get_product_recommendations accepts shop_article_id and shop_article_item_id sourced from a prior get_product_detail call and returns a list of related products, each with name, brand, image, price_display, and url. This enables cross-sell and related-product features using the same data the site itself exposes.

Common use cases
  • Build an INCI ingredient checker by extracting ingredient data from get_product_detail across multiple products.
  • Aggregate natural beauty product prices from Ecco Verde for comparison tools using price_display and variants.
  • Populate a category-browse UI using list_categories to drive navigation and get_category_products for listings.
  • Generate a full brand directory by iterating list_brands and cross-referencing with search_products.
  • Power a related-products widget by chaining get_product_detail and get_product_recommendations.
  • Monitor product availability by tracking the active field within variants returned by get_product_detail.
  • Build a keyword-driven product discovery tool for organic and natural beauty using search_products with Italian-language queries.
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 Ecco Verde have an official public developer API?+
Ecco Verde does not publish an official public developer API or documented API programme. This Parse API provides structured access to the catalogue data available on ecco-verde.it.
What does `get_product_detail` return beyond basic product info?+
get_product_detail returns the full attributes object (covering fields like EAN code, content volume, and product type), an array of variants each with name, price, and active status, INCI ingredient data, summary_bullets for key benefits, and the shop_article_id / shop_article_item_id values required for the get_product_recommendations endpoint.
How does pagination work for category and search results?+
get_category_products accepts a page parameter (optional, defaults to page 1) and returns up to 30 products per page alongside total_count, so you can calculate the number of pages needed. search_products also returns up to 30 results with a total_count field, but does not currently expose a page parameter for deep pagination. You can fork this API on Parse and revise it to add paginated search support.
Does the API expose customer reviews or review text?+
Product listing endpoints return rating and review_count fields, but individual review text and reviewer details are not currently exposed. The API covers product metadata, variants, ingredients, and recommendations. You can fork it on Parse and revise to add a review-detail endpoint.
Can I filter products by attributes such as vegan certification or ingredient exclusions?+
The API does not currently expose attribute-based filtering at the endpoint level. get_product_detail returns the full attributes object per product, so filtering can be done client-side after retrieval. get_category_products and search_products do not accept attribute filter parameters. You can fork this API on Parse and revise it to add server-side attribute filtering.
Page content last updated . Spec covers 6 endpoints from ecco-verde.it.
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.