GET
/
api
/
v2
/
manomano
/
product
/
offer
curl --request GET \
  --url https://piloterr.com/api/v2/manomano/product/offer \
  --header 'x-api-key: <x-api-key>'
{
    "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"
                    ]
                }
            ]
        },
        {
            "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": "36643313",
                "contract_name": "Direct Power",
                "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": "139818262",
            "is_sellable": true,
            "delivery_offers": [
                {
                    "estimate_delivery": {
                        "is_express": false,
                        "delivery_time": {
                            "max": 10,
                            "min": 7
                        },
                        "free_delivery": {
                            "threshold": null,
                            "is_reached": true
                        }
                    },
                    "delivery_countries": [
                        "GB"
                    ]
                }
            ]
        }
    ]
}
x-api-key
string
required

This parameter specifies the private key you’ll need for Piloterr access.

Parameters

query
string

Manomano product_id like 28910102. You can get this value from the product_id field in the Manomano Product API response.

region
string

Region code for the ManoMano platform. Supported regions:

  • FR - France (manomano.fr)
  • GB - United Kingdom (manomano.co.uk)
  • DE - Germany (manomano.de)
  • ES - Spain (manomano.es)
  • IT - Italy (manomano.it)

How to get the product_id ?

To get the product_id required for this endpoint, you first need to call the Manomano Product API:

  1. Call the product API with a regular Manomano product URL:

    GET /api/v2/manomano/product?query=https://www.manomano.fr/p/pergola-retractable-298l-x-213l-x-222h-m-structure-metal-epoxy-anticorrosion-toile-polyester-haute-densite-180-g-m-incluse-gris-17786586
    
  2. Extract the product_id from the response:

    {
      "product_id": 28910102,
      "title": "Pergola rétractable OUTSUNNY - 2,98L x 2,13l x 2,22H m",
      // ... other fields
    }
    
  3. Use the product_id as the query parameter for this offer endpoint. Make sure to use the correct region parameter that matches the original product URL domain.

{
    "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"
                    ]
                }
            ]
        },
        {
            "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": "36643313",
                "contract_name": "Direct Power",
                "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": "139818262",
            "is_sellable": true,
            "delivery_offers": [
                {
                    "estimate_delivery": {
                        "is_express": false,
                        "delivery_time": {
                            "max": 10,
                            "min": 7
                        },
                        "free_delivery": {
                            "threshold": null,
                            "is_reached": true
                        }
                    },
                    "delivery_countries": [
                        "GB"
                    ]
                }
            ]
        }
    ]
}