# ManoMano Product Offer ## Overview | Property | Value | |----------|-------| | **Status** | active | | **Method** | `GET` | | **Endpoint** | `/v2/manomano/product/offer` | | **Base URL** | `https://api.piloterr.com` | | **Credit Cost** | 1 credit per call | | **Documentation** | https://www.piloterr.com/library/manomano-product-offer | ## Description Get all marketplace seller offers for a ManoMano product by product ID, including pricing, shipping, and seller information. ## 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/manomano/product/offer' \ --header 'Content-Type: application/json' \ --header 'x-api-key: YOUR_API_KEY' ``` ## Example Response ### Get offers for product 28910102 (FR) ```json { "count": 2, "results": [ { "sku": { "title": "Modern single basin sink mixer tap slotted drain curved spout chrome bathroom", "master_product": { "slug": "modern-mono-basin-mixer-tap-slotted-waste-chrome-cloakroom", "article_id": "9655074" } }, "market": "B2C", "seller": { "is_m_f": false, "contract_id": "36769168", "contract_name": "COOCHEER", "country_location": "FR" }, "pricing": { "sell_price": { "amount_vat_excluded": 32.92, "amount_vat_included": 39.5 }, "retail_price": null, "eco_participation": { "amount_vat_included": 0.1 } }, "packaging": { "increment": "1", "minimum_quantity": "1" }, "product_id": "137641413", "is_sellable": true, "delivery_offers": [ { "estimate_delivery": { "is_express": false, "delivery_time": { "max": 11, "min": 8 }, "free_delivery": { "threshold": null, "is_reached": true } }, "delivery_countries": [ "GB" ] } ] } ] } ``` ## Documentation ## Overview Retrieve all marketplace seller offers for a given ManoMano product by product ID and region. Returns seller pricing, shipping terms, and availability. ## Quickstart ``` GET https://api.piloterr.com/v2/manomano/product/offer?query=28910102®ion=FR ``` ## Parameters | Parameter | Type | Required | Description | |---|---|---|---| | `query` | string | yes | ManoMano product ID | | `region` | string | yes | Region code (`FR`, `GB`, `DE`, `ES`, `IT`) | ## Main use cases - Compare seller prices to find the best deal - Monitor competitor offers for dynamic pricing - Track seller availability for supply chain intelligence - Build price alert tools