# El Corte Inglés Product ## Overview | Property | Value | |----------|-------| | **Status** | private | | **Method** | `GET` | | **Endpoint** | `/v2/el-corte-ingles/product` | | **Base URL** | `https://api.piloterr.com` | | **Credit Cost** | 1 credit per call | | **Documentation** | https://www.piloterr.com/library/el-corte-ingles-product | ## Description Retrieve a full El Corte Inglés product page by URL with price, EAN, specs, rating, reviews count, availability, and images as structured JSON. ## Authentication - **Key Name:** `x-api-key` - **Location:** HTTP Header - **Get an API key:** https://app.piloterr.com/register ## Example Request ```bash curl --location --request GET 'https://api.piloterr.com/v2/el-corte-ingles/product' \ --header 'Content-Type: application/json' \ --header 'x-api-key: YOUR_API_KEY' ``` ## Example Response ### Dyson V12 Detect Slim product page ```json { "id": "B48531285", "ean": "5025155068939", "sku": "V12DETECTSLIMABS", "url": "https://www.elcorteingles.es/electrodomesticos/A48531285-aspirador-de-escoba-dyson-v12-detect-slim-absolute-hierro-niquel/", "brand": "Dyson", "media": { "images": [ "https://www.elcorteingles.es/electrodomesticos/img/B48531285/B48531285_1.jpg", "https://www.elcorteingles.es/electrodomesticos/img/B48531285/B48531285_2.jpg", "https://www.elcorteingles.es/electrodomesticos/img/B48531285/B48531285_3.jpg", "https://www.elcorteingles.es/electrodomesticos/img/B48531285/B48531285_4.jpg" ], "video_url": "https://www.elcorteingles.es/electrodomesticos/video/B48531285/dyson-v12-detect-slim.mp4", "thumbnail_url": "https://www.elcorteingles.es/electrodomesticos/img/B48531285/B48531285_1.jpg" }, "title": "Aspirador de escoba Dyson V12 Detect Slim Absolute Hierro/Níquel", "pricing": { "price": 549, "currency": "EUR", "is_promotion": true, "original_price": 649, "discount_percentage": 15, "financing_available": true }, "reviews": { "count": 2841, "rating": 4.7, "distribution": { "1": 28, "2": 42, "3": 121, "4": 463, "5": 2187 } }, "category": "Electrodomésticos", "description": "El Dyson V12 Detect Slim Absolute es el aspirador de escoba más ligero de Dyson. Incorpora un láser verde que ilumina el polvo oculto en suelos duros, junto con el sensor piezoeléctrico que cuenta y clasifica las partículas de suciedad aspiradas. Su motor digital Dyson Hyperdymium de 150.000 rpm genera potente succión en un formato compacto y ágil.", "availability": { "online": true, "status": "in_stock", "in_store": true, "delivery_days": 2 }, "sub_category": "Aspiración y limpieza", "specifications": [ { "name": "Color", "value": "Hierro/Níquel" }, { "name": "Potencia de succión", "value": "150 AW" }, { "name": "Autonomía máxima", "value": "60 minutos" }, { "name": "Capacidad depósito", "value": "0.35 litros" }, { "name": "Peso", "value": "2.2 kg" }, { "name": "Tipo de batería", "value": "Li-Ion" }, { "name": "Clase energética", "value": "A" } ] } ``` ## Documentation ## Overview This endpoint returns the full data for a single El Corte Inglés product: live price and promotion, complete spec table, stock status for online and physical channels, review distribution, and all image URLs. Cloudflare on elcorteingles.es is handled by Piloterr. ## Quickstart ``` GET https://api.piloterr.com/v2/el-corte-ingles/product?url=https://www.elcorteingles.es/electrodomesticos/A48531285-aspirador-de-escoba-dyson-v12-detect-slim-absolute-hierro-niquel/ ``` ## Main use cases - Populate a product information management system with live El Corte Inglés data - Monitor price changes and promotion events on specific product URLs - Track star rating distribution and review counts for brand sentiment analysis - Collect EANs and prices for cross-marketplace price parity checks - Build a catalogue enrichment pipeline targeting the Spanish retail market