# Jardiland Search ## Overview | Property | Value | |----------|-------| | **Status** | private | | **Method** | `GET` | | **Endpoint** | `/v2/jardiland/search` | | **Base URL** | `https://api.piloterr.com` | | **Credit Cost** | 1 credit per call | | **Documentation** | https://www.piloterr.com/library/jardiland-search | ## Description Search Jardiland products by keyword or category and get name, price, brand, stock status, and rating 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/jardiland/search' \ --header 'Content-Type: application/json' \ --header 'x-api-key: YOUR_API_KEY' ``` ## Example Response ### Search tomate cerise ```json { "page": 1, "results": [ { "id": "JL-PLT-004823", "url": "https://www.jardiland.com/plantes/potager/plant-tomate-cerise-rouge-jardiland-JL-PLT-004823.html", "name": "Plant Tomate Cerise Rouge", "brand": "Vilmorin", "price": 3.49, "rating": 4.3, "category": "Plantes", "currency": "EUR", "in_stock": true, "image_url": "https://www.jardiland.com/media/catalog/product/cache/1/image/9df78eab33525d08d6e5fb8d27136e95/t/o/tomate-cerise-rouge-vilmorin.jpg", "subcategory": "Potager", "review_count": 58, "original_price": 3.49, "click_and_collect": true, "short_description": "Plant de tomate cerise à fruits rouges, idéale en pot ou en pleine terre.", "discount_percentage": 0 }, { "id": "JL-PLT-009341", "url": "https://www.jardiland.com/plantes/potager/plant-courgette-verte-jardiland-JL-PLT-009341.html", "name": "Plant Courgette Verte", "brand": "Clause", "price": 2.99, "rating": 4.1, "category": "Plantes", "currency": "EUR", "in_stock": true, "image_url": "https://www.jardiland.com/media/catalog/product/cache/1/image/9df78eab33525d08d6e5fb8d27136e95/c/o/courgette-verte-clause.jpg", "subcategory": "Potager", "review_count": 34, "original_price": 3.99, "click_and_collect": true, "short_description": "Plant de courgette verte hâtive, productif et résistant aux maladies.", "discount_percentage": 25 } ], "total_pages": 35, "total_results": 847 } ``` ### Search taille-haie en stock ```json { "page": 1, "results": [ { "id": "JL-OUT-018432", "url": "https://www.jardiland.com/outillage/taille-haie-electrique-550w-jardiland-JL-OUT-018432.html", "name": "Taille-haie électrique 550W", "brand": "Bosch", "price": 89.99, "rating": 4.5, "category": "Outillage", "currency": "EUR", "in_stock": true, "image_url": "https://www.jardiland.com/media/catalog/product/cache/1/image/9df78eab33525d08d6e5fb8d27136e95/b/o/bosch-taille-haie-550w.jpg", "subcategory": "Outillage électroportatif", "review_count": 112, "original_price": 119.99, "click_and_collect": true, "short_description": "Taille-haie électrique filaire 550W, lame 50 cm, idéal pour haies moyennes.", "discount_percentage": 25 } ], "total_pages": 6, "total_results": 124 } ``` ## Documentation ## Overview Jardiland is France's leading garden center chain with 200+ stores and an active e-commerce site. This endpoint returns search results with product name, brand, price, discount, category, stock status, rating, and image URL. ## Quickstart ``` GET https://api.piloterr.com/v2/jardiland/search?query=tomate+cerise ``` ## Main use cases - Monitor prices and promotions by category for price comparison tools - Build real-time plant catalogs with pricing and availability - Compare French garden center assortments for competitive analysis - Feed purchasing tools for landscape professionals - Detect stock-outs and seasonal new arrivals Get access at https://www.piloterr.com/pricing