Skip to content

Mercado Livre Search API

Scrape Mercado Livre search results instantly with a simple API call

A GET request to our endpoint /api/getter/?platform="mercado_search" enables you to scrape search results from Mercado Livre's search engine in real-time.

Example

To scrape Mercado Livre's search results for the keyword "shampoo", you can use the following command:

1
curl 'https://data.unwrangle.com/api/getter/?platform=mercado_search&search=shampoo&api_key=API_KEY'
1
2
3
4
5
import requests

url = 'https://data.unwrangle.com/api/getter/?platform=mercado_search&search=shampoo&api_key=API_KEY'
response = requests.get(url)
print(response.json())
1
2
3
const response = await fetch('https://data.unwrangle.com/api/getter/?platform=mercado_search&search=shampoo&api_key=API_KEY')
const data = await response.json()
console.log(data)
1
2
3
4
5
6
<?php
$url = 'https://data.unwrangle.com/api/getter/?platform=mercado_search&search=shampoo&api_key=API_KEY';
$response = file_get_contents($url);
$data = json_decode($response, true);
print_r($data);
?>
1
2
3
4
5
6
require 'net/http'
require 'uri'

uri = URI.parse('https://data.unwrangle.com/api/getter/?platform=mercado_search&search=shampoo&api_key=API_KEY')
response = Net::HTTP.get(uri)
puts response

Query Parameters

Our endpoint requires the following query parameters to fetch the desired search results:

Search Query

search

Required

Defines the search query. Accepts any string a user might enter in a regular Mercado Livre search.

page

Optional

Specifies the page number of results you're requesting. The default is 1.

Other Required Parameters

platform

Required

The scraping engine to use. For Mercado Livre searches, this should be mercado_search.

api_key

Required

Your unique API key, obtainable by registering on our platform.

Note

Replace spaces in the search keyword with a plus + sign. For example, use "organic+shampoo" instead of "organic shampoo".

Results

Each request returns up to 60 results. The response includes the following attributes for each product:

Attributes Returned Data Type Information Represented
name string Product name
url string Product listing URL
thumbnail string Thumbnail URL
brand string Brand of the product
rating float Average product rating (if available)
total_ratings int Total number of ratings (if available)
price float Current price of the product
listing_price float/null Original listing price (if discounted)
currency_symbol string Currency symbol (e.g., R$)
currency string Currency code (e.g., BRL)

Response Example

Here's a simplified example of what you can expect to receive for the request showcased above:

{
    "success": true,
    "search": "shampoo",
    "page": 1,
    "total_results": 261049,
    "no_of_pages": 42,
    "result_count": 49,
    "results": [
        {
            "name": "Kit 2 Shampoos Redutor De Grisalhos Grecin Control Gx 118 Ml",
            "url": "https://click1.mercadolivre.com.br/mclics/clicks/external/MLB/count",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_957418-MLB73709416651_122023-E.webp",
            "brand": "GRECIN",
            "rating": 4.8,
            "total_ratings": 2356,
            "price": 129.43,
            "listing_price": 184.9,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Shampoo Vegano Mais Cor 300ml Kamaleão Color Protetor De Cor",
            "url": "https://www.mercadolivre.com.br/shampoo-vegano-mais-cor-300ml-kamaleo-color-protetor-de-cor/p/MLB19703632",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_777295-MLU75593721537_042024-E.webp",
            "brand": "KAMALEÃO COLOR",
            "rating": 4.3,
            "total_ratings": 7,
            "price": 35.9,
            "listing_price": null,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Shampoo Redutor De Grisalhos Grecin Control Gx 118 Ml",
            "url": "https://www.mercadolivre.com.br/shampoo-redutor-de-grisalhos-grecin-control-gx-118-ml/p/MLB25708528",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_790450-MLU78006134328_082024-E.webp",
            "brand": "GRECIN",
            "rating": 4.7,
            "total_ratings": 1706,
            "price": 66.43,
            "listing_price": 94.9,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Shampoo Anticaspa Limpeza Diária 2 Em 1 400ml Clear",
            "url": "https://www.mercadolivre.com.br/shampoo-anticaspa-limpeza-diaria-2-em-1-400ml-clear/p/MLB19508953",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_802099-MLU71143923071_082023-E.webp",
            "brand": "CLEAR",
            "rating": 4.9,
            "total_ratings": 1437,
            "price": 24.99,
            "listing_price": 36.8,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": " Shampoo Tio Nacho Antiqueda Efeito Antigrisalho 415ml",
            "url": "https://www.mercadolivre.com.br/shampoo-tio-nacho-antiqueda-efeito-antigrisalho-415ml/p/MLB37856096",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_873583-MLU77199200339_062024-E.webp",
            "brand": "TÍO NACHO",
            "rating": 4.4,
            "total_ratings": 629,
            "price": 30.15,
            "listing_price": 35.9,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Keune Man Shampoo Fortify 250ml",
            "url": "https://www.mercadolivre.com.br/keune-man-shampoo-fortify-250ml/p/MLB19505795",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_961518-MLU72643271627_112023-E.webp",
            "brand": "KEUNE",
            "rating": 4.8,
            "total_ratings": 220,
            "price": 78.99,
            "listing_price": null,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Shampoo Estimulante Antiqueda 400g Vichy Dercos",
            "url": "https://www.mercadolivre.com.br/shampoo-estimulante-antiqueda-400g-vichy-dercos/p/MLB19315994",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_729453-MLA80821159025_112024-E.webp",
            "brand": "VICHY",
            "rating": 4.8,
            "total_ratings": 6390,
            "price": 128.48,
            "listing_price": 159.9,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Shampoo Anticaspa Derscos DS Cabelos Secos Dermatológico 300g Vichy",
            "url": "https://www.mercadolivre.com.br/shampoo-anticaspa-derscos-ds-cabelos-secos-dermatologico-300g-vichy/p/MLB37274471",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_666034-MLA80054858646_102024-E.webp",
            "brand": "VICHY",
            "rating": 4.8,
            "total_ratings": 679,
            "price": 92.87,
            "listing_price": 129.9,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Densifique Bain Densité Shampoo 250ml | Kérastase",
            "url": "https://www.mercadolivre.com.br/densifique-bain-densite-shampoo-250ml-kerastase/p/MLB19761624",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_967698-MLU76220533555_052024-E.webp",
            "brand": "KÉRASTASE",
            "rating": 4.9,
            "total_ratings": 369,
            "price": 178.47,
            "listing_price": 234.9,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Kit Bambu Pantene Shampoo 400ml + Condicionador 175ml",
            "url": "https://www.mercadolivre.com.br/kit-bambu-pantene-shampoo-400ml-condicionador-175ml/p/MLB18964047",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_868043-MLB49144141349_022022-E.webp",
            "brand": "PANTENE",
            "rating": 4.9,
            "total_ratings": 121,
            "price": 29.92,
            "listing_price": null,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Doctar Sensi Shampoo 120ml",
            "url": "https://www.mercadolivre.com.br/doctar-sensi-shampoo-120ml/p/MLB19506446",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_873187-MLU79168379279_092024-E.webp",
            "brand": "DARROW",
            "rating": 4.8,
            "total_ratings": 58,
            "price": 67.2,
            "listing_price": 84.99,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Kit Shock Stream Litro Aramath Shampoo Sem Sal Máscara",
            "url": "https://www.mercadolivre.com.br/kit-shock-stream-litro-aramath-shampoo-sem-sal-mascara/p/MLB34847350",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_628154-MLU75338413749_032024-E.webp",
            "brand": "ARAMATH",
            "rating": 0.0,
            "total_ratings": 0,
            "price": 163.99,
            "listing_price": 199.99,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Kit 3x Shampoo Redutor De Grisalhos Grecin Control Gx 118ml",
            "url": "https://www.mercadolivre.com.br/kit-3x-shampoo-redutor-de-grisalhos-grecin-control-gx-118ml/p/MLB37914264",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_605893-MLU77089148750_062024-E.webp",
            "brand": "GRECIN",
            "rating": 5.0,
            "total_ratings": 56,
            "price": 192.3,
            "listing_price": 269.9,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Shampoo Anticaspa Intensivo Doctar Plus 240ml Darrow",
            "url": "https://www.mercadolivre.com.br/shampoo-anticaspa-intensivo-doctar-plus-240ml-darrow/p/MLB19506184",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_892253-MLU77126325136_062024-E.webp",
            "brand": "DARROW",
            "rating": 4.8,
            "total_ratings": 932,
            "price": 86.89,
            "listing_price": 114.99,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Shampoo Anabolizante Capilar Natumaxx 1l",
            "url": "https://www.mercadolivre.com.br/shampoo-anabolizante-capilar-natumaxx-1l/p/MLB21590938",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_756576-MLU73778130427_012024-E.webp",
            "brand": "NATUMAXX",
            "rating": 0.0,
            "total_ratings": 0,
            "price": 64.9,
            "listing_price": null,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Shampoo Profissional Cristal Restaura Galão Yamá 4,6l",
            "url": "https://www.mercadolivre.com.br/shampoo-profissional-cristal-restaura-galo-yama-46l/p/MLB19842953",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_724328-MLU72644401861_112023-E.webp",
            "brand": "YAMA",
            "rating": 4.8,
            "total_ratings": 121,
            "price": 53.2,
            "listing_price": null,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Shampoo Anticaspa De Cabelos Normais A Oleosos Dercos 300g Vichy",
            "url": "https://www.mercadolivre.com.br/shampoo-anticaspa-de-cabelos-normais-a-oleosos-dercos-300g-vichy/p/MLB37257779",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_653703-MLU76679540233_052024-E.webp",
            "brand": "VICHY",
            "rating": 4.9,
            "total_ratings": 312,
            "price": 109.24,
            "listing_price": 129.9,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Shampoo Liso Perfeito 325ml Seda",
            "url": "https://www.mercadolivre.com.br/shampoo-liso-perfeito-325ml-seda/p/MLB19176720",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_744570-MLU75814216204_042024-E.webp",
            "brand": "SEDA",
            "rating": 4.8,
            "total_ratings": 193,
            "price": 9.69,
            "listing_price": 12.9,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Shampoo Dercos Anticaspa Sensível 200ml Vichy",
            "url": "https://www.mercadolivre.com.br/shampoo-dercos-anticaspa-sensivel-200ml-vichy/p/MLB19506517",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_622735-MLA81163054553_122024-E.webp",
            "brand": "VICHY",
            "rating": 4.6,
            "total_ratings": 1389,
            "price": 88.15,
            "listing_price": 110.9,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": " Kit 3x Shampoo Cetoconazol Anticaspa 100ml - Prevent Pharma",
            "url": "https://www.mercadolivre.com.br/kit-3x-shampoo-cetoconazol-anticaspa-100ml-prevent-pharma/p/MLB32625354",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_823176-MLU74778827467_022024-E.webp",
            "brand": "PREVENT PHARMA",
            "rating": 4.7,
            "total_ratings": 84,
            "price": 37.79,
            "listing_price": 44.99,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Kit Spécialiste Matizante Shampoo Máscara Cinza Finalizador",
            "url": "https://www.mercadolivre.com.br/kit-specialiste-matizante-shampoo-mascara-cinza-finalizador/p/MLB43609142",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_674214-MLA80640352972_112024-E.webp",
            "brand": "BIO EXTRATUS",
            "rating": 0.0,
            "total_ratings": 0,
            "price": 133.71,
            "listing_price": 167.14,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Pilexil Shampoo Antiqueda Capilar 150ml",
            "url": "https://www.mercadolivre.com.br/pilexil-shampoo-antiqueda-capilar-150ml/p/MLB19705286",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_657726-MLU72637328447_112023-E.webp",
            "brand": "DAUDT",
            "rating": 4.6,
            "total_ratings": 73,
            "price": 54.99,
            "listing_price": null,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Shampoo Yama Profissional Neutro C/ Proteinas Galão 4,6l Wxz",
            "url": "https://www.mercadolivre.com.br/shampoo-yama-profissional-neutro-c-proteinas-galo-46l-wxz/p/MLB19601114",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_961238-MLU74486541868_022024-E.webp",
            "brand": "YAMA",
            "rating": 4.5,
            "total_ratings": 107,
            "price": 53.4,
            "listing_price": null,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Shampoo E Condicionador P/ Hotel 10 Ml (500 Und) Sache",
            "url": "https://www.mercadolivre.com.br/shampoo-e-condicionador-p-hotel-10-ml-500-und-sache/p/MLB21472486",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_836768-MLU69419519892_052023-E.webp",
            "brand": "NATURALLYS",
            "rating": 4.8,
            "total_ratings": 92,
            "price": 113.4,
            "listing_price": 135.0,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Braé Stages Hydration Kit 3 Shampoo 250ml",
            "url": "https://www.mercadolivre.com.br/brae-stages-hydration-kit-3-shampoo-250ml/p/MLB44571378",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_809275-MLA80953680992_122024-E.webp",
            "brand": "BRAÉ",
            "rating": 0.0,
            "total_ratings": 0,
            "price": 101.9,
            "listing_price": null,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Kit Linha A Aneethun Shampoo Creme Mascara + Escova Beauty Secret",
            "url": "https://www.mercadolivre.com.br/kit-linha-a-aneethun-shampoo-creme-mascara-escova-beauty-secret/p/MLB36750981",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_920777-MLA79274670134_092024-E.webp",
            "brand": "ANEETHUN",
            "rating": 4.7,
            "total_ratings": 73,
            "price": 219.99,
            "listing_price": 279.99,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Shampoo Detox Capilar Frasco 650ml Tresemmé",
            "url": "https://www.mercadolivre.com.br/shampoo-detox-capilar-frasco-650ml-tresemme/p/MLB29022684",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_768665-MLU73452309241_122023-E.webp",
            "brand": "TRESEMMÉ",
            "rating": 4.8,
            "total_ratings": 110,
            "price": 25.99,
            "listing_price": 35.91,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Shampoo Reconstrução E Força Frasco 650ml Tresemmé",
            "url": "https://www.mercadolivre.com.br/shampoo-reconstruco-e-forca-frasco-650ml-tresemme/p/MLB29022621",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_701048-MLU73452296397_122023-E.webp",
            "brand": "TRESEMMÉ",
            "rating": 4.9,
            "total_ratings": 145,
            "price": 24.99,
            "listing_price": 35.91,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "1 Shampoo Escurecedor De Cabelo Gradual Men Menfirst Original",
            "url": "https://www.mercadolivre.com.br/1-shampoo-escurecedor-de-cabelo-gradual-men-menfirst-original/p/MLB37782355",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_775316-MLU77288151790_072024-E.webp",
            "brand": "MENFIRST",
            "rating": 3.9,
            "total_ratings": 74,
            "price": 59.43,
            "listing_price": null,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": " Shampoo Kérastase Nutritive Bain Satin Riche 250 ml",
            "url": "https://www.mercadolivre.com.br/shampoo-kerastase-nutritive-bain-satin-riche-250-ml/p/MLB35380014",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_636256-MLU75619164921_042024-E.webp",
            "brand": "KÉRASTASE",
            "rating": 4.9,
            "total_ratings": 193,
            "price": 193.9,
            "listing_price": 214.9,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": " Kit Phytoervas Anticaspa Shampoo 250ml + Condicionador 250ml",
            "url": "https://www.mercadolivre.com.br/kit-phytoervas-anticaspa-shampoo-250ml-condicionador-250ml/p/MLB22343832",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_695288-MLB49284615868_032022-E.webp",
            "brand": "PHYTOERVAS",
            "rating": 4.7,
            "total_ratings": 74,
            "price": 35.56,
            "listing_price": null,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Kit Profissional Zap Me Leva + Shampoo Detox 500ml",
            "url": "https://www.mercadolivre.com.br/kit-profissional-zap-me-leva-shampoo-detox-500ml/p/MLB19542157",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_991994-MLA80280954479_102024-E.webp",
            "brand": "ZAP COSMÉTICOS",
            "rating": 4.4,
            "total_ratings": 730,
            "price": 42.9,
            "listing_price": 53.63,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Shampoo Esfoliante Anticaspa Dercos Micropeel 150g Vichy",
            "url": "https://www.mercadolivre.com.br/shampoo-esfoliante-anticaspa-dercos-micropeel-150g-vichy/p/MLB19506407",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_746842-MLU72339227055_102023-E.webp",
            "brand": "VICHY",
            "rating": 4.9,
            "total_ratings": 1105,
            "price": 70.29,
            "listing_price": 99.9,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": " Kit 500 Shampoo 2x1 Flower's Naturys Hotel, Motel, Resort",
            "url": "https://www.mercadolivre.com.br/kit-500-shampoo-2x1-flowers-naturys-hotel-motel-resort/p/MLB25990988",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_771012-MLU72566386158_112023-E.webp",
            "brand": "NATURY'S",
            "rating": 4.9,
            "total_ratings": 45,
            "price": 125.0,
            "listing_price": null,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Shampoo Kérastase Genesis Homme Bain de Masse",
            "url": "https://www.mercadolivre.com.br/shampoo-kerastase-genesis-homme-bain-de-masse/p/MLB19703406",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_725280-MLU72606558743_102023-E.webp",
            "brand": "KÉRASTASE",
            "rating": 4.8,
            "total_ratings": 49,
            "price": 164.44,
            "listing_price": 213.56,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Shampoo Vichy Dercos oil-correction 300g",
            "url": "https://www.mercadolivre.com.br/shampoo-vichy-dercos-oil-correction-300g/p/MLB19901159",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_680750-MLA79710596737_102024-E.webp",
            "brand": "VICHY",
            "rating": 4.7,
            "total_ratings": 721,
            "price": 72.19,
            "listing_price": 99.9,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Shampoo Higienizando A Juba Wd 500ml Limpeza Inteligente",
            "url": "https://www.mercadolivre.com.br/shampoo-higienizando-a-juba-wd-500ml-limpeza-inteligente/p/MLB19860817",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_773583-MLU74415963226_022024-E.webp",
            "brand": "WIDI CARE",
            "rating": 4.9,
            "total_ratings": 416,
            "price": 41.98,
            "listing_price": 49.98,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Kit Ionizante Catiônica Completa Forever Liss",
            "url": "https://www.mercadolivre.com.br/kit-ionizante-catinica-completa-forever-liss/p/MLB27645132",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_745205-MLU78895028216_092024-E.webp",
            "brand": "FOREVER LISS PROFESSIONAL",
            "rating": 4.6,
            "total_ratings": 51,
            "price": 99.9,
            "listing_price": null,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Nioxin System 2 Cleanser Shampoo 300ml",
            "url": "https://www.mercadolivre.com.br/nioxin-system-2-cleanser-shampoo-300ml/p/MLB19704467",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_795432-MLB74118237120_012024-E.webp",
            "brand": "NIOXIN",
            "rating": 4.8,
            "total_ratings": 63,
            "price": 148.75,
            "listing_price": 175.0,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Mantecorp Pielus Di Shampoo Anticaspa 200ml",
            "url": "https://www.mercadolivre.com.br/mantecorp-pielus-di-shampoo-anticaspa-200ml/p/MLB29667368",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_899483-MLU74343758585_022024-E.webp",
            "brand": "MANTECORP",
            "rating": 4.9,
            "total_ratings": 40,
            "price": 78.85,
            "listing_price": 104.9,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Shampoo Pielus Antiqueda 200ml Mantecorp Skincare",
            "url": "https://www.mercadolivre.com.br/shampoo-pielus-antiqueda-200ml-mantecorp-skincare/p/MLB19506403",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_825817-MLA80327239260_112024-E.webp",
            "brand": "MANTECORP",
            "rating": 4.7,
            "total_ratings": 479,
            "price": 76.83,
            "listing_price": 104.9,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Vichy Dercos Shampoo Energy+ 200g",
            "url": "https://www.mercadolivre.com.br/vichy-dercos-shampoo-energy-200g/p/MLB25662351",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_889624-MLA80407965251_112024-E.webp",
            "brand": "VICHY",
            "rating": 4.7,
            "total_ratings": 830,
            "price": 79.78,
            "listing_price": 109.9,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Refil Shampoo Dercos Energy+ 200g Vichy",
            "url": "https://www.mercadolivre.com.br/refil-shampoo-dercos-energy-200g-vichy/p/MLB27731058",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_795273-MLU73186303365_122023-E.webp",
            "brand": "VICHY",
            "rating": 4.8,
            "total_ratings": 1791,
            "price": 68.16,
            "listing_price": 84.9,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Kit Lola Cronograma Rapunzel Shampoo + Tônico + Mascara 450g",
            "url": "https://www.mercadolivre.com.br/kit-lola-cronograma-rapunzel-shampoo-tnico-mascara-450g/p/MLB34500109",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_704376-MLU75240414351_032024-E.webp",
            "brand": "LOLA",
            "rating": 4.6,
            "total_ratings": 137,
            "price": 116.72,
            "listing_price": 145.9,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": " Shampoo Silver Touch",
            "url": "https://www.mercadolivre.com.br/shampoo-silver-touch/p/MLB41516057",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_884735-MLA79499818206_102024-E.webp",
            "brand": "VIZCAYA",
            "rating": 5.0,
            "total_ratings": 1,
            "price": 69.0,
            "listing_price": null,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Shampoo Anticaspa Intensivo Kerium DS 125ml La Roche-posay",
            "url": "https://www.mercadolivre.com.br/shampoo-anticaspa-intensivo-kerium-ds-125ml-la-roche-posay/p/MLB19506142",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_953849-MLA79462482509_092024-E.webp",
            "brand": "LA ROCHE-POSAY",
            "rating": 4.8,
            "total_ratings": 780,
            "price": 108.56,
            "listing_price": 139.9,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Keune Care Keratin Smooth Shampoo 300ml Elimina Frizz",
            "url": "https://www.mercadolivre.com.br/keune-care-keratin-smooth-shampoo-300ml-elimina-frizz/p/MLB19921474",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_799605-MLU74134570922_012024-E.webp",
            "brand": "KEUNE",
            "rating": 4.6,
            "total_ratings": 48,
            "price": 94.99,
            "listing_price": null,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Shampoo Kérastase Résistance - Bain Thérapiste 250ml Full",
            "url": "https://www.mercadolivre.com.br/shampoo-kerastase-resistance-bain-therapiste-250ml-full/p/MLB19704164",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_615539-MLU76206460021_052024-E.webp",
            "brand": "KÉRASTASE",
            "rating": 4.9,
            "total_ratings": 207,
            "price": 166.73,
            "listing_price": 234.9,
            "currency_symbol": "R$",
            "currency": "BRL"
        },
        {
            "name": "Kit Shampoo E Máscara Capilar Aneethun Linha A (2 Itens)",
            "url": "https://www.mercadolivre.com.br/kit-shampoo-e-mascara-capilar-aneethun-linha-a-2-itens/p/MLB32819507",
            "thumbnail": "https://http2.mlstatic.com/D_Q_NP_2X_663355-MLU74507457207_022024-E.webp",
            "brand": "ANEETHUN",
            "rating": 4.7,
            "total_ratings": 130,
            "price": 134.9,
            "listing_price": null,
            "currency_symbol": "R$",
            "currency": "BRL"
        }
    ],
    "meta_data": {},
    "remaining_credits": 1955837
}

Request Cost

10 credits are deducted for each successful request

Support

For additional parameters, questions, or feedback, please contact us at support@unwrangle.com.