# Worten Product ## Overview | Property | Value | |----------|-------| | **Status** | private | | **Method** | `GET` | | **Endpoint** | `/v2/worten/product` | | **Base URL** | `https://api.piloterr.com` | | **Credit Cost** | 1 credit per call | | **Documentation** | https://www.piloterr.com/library/worten-product | ## Access This endpoint is **private**. Requests return HTTP 403 until access is granted. There is no self-serve request-access button. Open a support ticket from the dashboard Help desk (https://app.piloterr.com/app?returnTo=help-desk/tickets/new) and include the endpoint path, your use case, target fields, and expected volume. ## Description Retrieve a full Worten product page by URL with price, specs, rating, availability, images, and variants as structured JSON in real time. ## 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/worten/product' \ --header 'Content-Type: application/json' \ --header 'x-api-key: YOUR_API_KEY' ``` ## Example Response ### iPhone 15 128GB product page ```json { "id": "WPT-8934710", "url": "https://www.worten.pt/smartphones-e-comunicacoes/smartphones/apple-iphone-15-128gb-preto-5G-WPT-8934710.html", "brand": "Apple", "price": { "current": 829, "currency": "EUR", "original": 949, "discount_percent": 12.6, "installment_available": true }, "title": "Apple iPhone 15 128GB Preto 5G", "images": [ "https://static.worten.pt/produtos/WPT-8934710/WPT-8934710_a.jpg", "https://static.worten.pt/produtos/WPT-8934710/WPT-8934710_b.jpg", "https://static.worten.pt/produtos/WPT-8934710/WPT-8934710_c.jpg" ], "labels": [ "IVA ZERO", "Top Vendas" ], "country": "pt", "ratings": { "count": 312, "average": 4.7, "distribution": { "1": 3, "2": 6, "3": 14, "4": 48, "5": 241 } }, "category": "Smartphones e Comunicações > Smartphones", "variants": [ { "id": "WPT-8934710", "url": "https://www.worten.pt/smartphones-e-comunicacoes/smartphones/apple-iphone-15-128gb-preto-5G-WPT-8934710.html", "color": "Preto", "price": 829, "storage": "128GB", "availability": "in_stock" }, { "id": "WPT-8934711", "url": "https://www.worten.pt/smartphones-e-comunicacoes/smartphones/apple-iphone-15-256gb-azul-5G-WPT-8934711.html", "color": "Azul", "price": 979, "storage": "256GB", "availability": "in_stock" } ], "video_url": null, "description": "O iPhone 15 apresenta um ecrã Super Retina XDR de 6,1 polegadas com Dynamic Island. Equipado com o chip A16 Bionic para um desempenho excecional, câmara principal de 48 MP com zoom ótico 2x e USB-C para transferências rápidas.", "availability": { "status": "in_stock", "store_pickup": true, "delivery_days": 2 }, "specifications": { "RAM": "6 GB", "Ecrã": "6.1 polegadas, Super Retina XDR OLED", "Redes": "5G, Wi-Fi 6, Bluetooth 5.3", "Bateria": "3877 mAh", "Conector": "USB-C", "Processador": "Apple A16 Bionic", "Câmara frontal": "12 MP", "Memória interna": "128 GB", "Câmara principal": "48 MP", "Sistema operativo": "iOS 17" } } ``` ## Documentation ## Overview Worten is the leading electronics retailer in Portugal and one of the largest in Spain. Each product page holds price, discount, stock status, delivery estimate, ratings, variants, and technical specs. The platform applies Cloudflare protection. Piloterr handles the bypass and returns everything as structured JSON from a single GET call. ## Quickstart ``` GET https://api.piloterr.com/v2/worten/product?url=https://www.worten.pt/smartphones-e-comunicacoes/smartphones/apple-iphone-15-128gb-preto-5G-WPT-8934710.html ``` ## Main use cases - Extract spec sheets from Worten pages to power a product comparison engine for Iberian consumers - Monitor price and discount changes on specific SKUs to trigger alerts or dynamic pricing adjustments - Collect variant-level pricing and availability data for inventory or procurement dashboards - Aggregate rating distributions to surface quality trends across product categories - Build a structured Iberian electronics catalogue by pulling titles, images, and specs at scale