Documentação do Mercado Livre

Confira todas as informações necessárias sobre as APIs Mercado Livre.
circulos azuis em degrade

Documentação do

Última atualização em 14/03/2023

Empreendimentos imobiliários

Um lançamento imobiliário (ou um empreendimento imobiliário) é um tipo de publicação de imóvel dentro do Mercado Livre que permite ao vendedor divulgar e vender unidades de um novo empreendimento, que pode estar na planta, em construção ou construído. A unidade pode ter várias características, conhecidas como variações. Cada variação detalha uma possível unidade a ser vendida, com seus atributos, planos, etc.

Pacotes

É necessário que o vendedor tenha um pacote do tipo “lançamento imobiliário”.

Nota:
Para realizar testes, você deverá enviar o seu usuário de teste para o canal de suporte para que seja ativado como real estate, e também para que eles possam associar este usuário a um pacote de lançamentos imobiliários. Para cada ticket, é possível assignar só um anuncio à vez.


Categorias

O integrador deve buscar a categoria correta dentro da árvore de categorias:

curl -X GET -H 'Authorization: Bearer $ACCESS_TOKEN' https://api.mercadolibre.com/sites/$SITE_ID/categories

A categoria a ser enviada sempre deve ser filha. No exemplo abaixo, a categoria filha é a MLA401805, que é a categoria referente a lançamentos imobiliários. Exemplo:

Imóveis:

curl -X GET -H 'Authorization: Bearer $ACCESS_TOKEN' https://api.mercadolibre.com/sites/MLA/categories
curl -X GET -H 'Authorization: Bearer $ACCESS_TOKEN' https://api.mercadolibre.com/categories/MLA1459

Departamentos:

curl -X GET -H 'Authorization: Bearer $ACCESS_TOKEN' https://api.mercadolibre.com/categories/MLA1472

Venta:

curl -X GET -H 'Authorization: Bearer $ACCESS_TOKEN' https://api.mercadolibre.com/categories/MLA1474

Lançamentos imobiliários:

curl -X GET -H 'Authorization: Bearer $ACCESS_TOKEN' https://api.mercadolibre.com/categories/MLA401805


Fotos

As fotos das variações têm que ser geradas através do recurso pictures, como no exemplo, ou seja, enviadas no mesmo POST no array de pictures. As fotos em que os IDs não estão nas variações, não serão mostradas na “home” do empreendimento. As que tem o ID nas variações, serão exibidas na descrição e cotação.
A quantidade máxima de imagens e definida pela categoria nos campos “max_pictures_per_item” y “max_pictures_per_item_var”

Exemplo:

curl -X GET -H 'Authorization: Bearer $ACCESS_TOKEN' https://api.mercadolibre.com/categories/MLA401806

Resposta:

{
        ...
        "max_pictures_per_item": 80,
        "max_pictures_per_item_var": 6,
        ...
}


Publicar um lançamento imobiliário

Um lançamento tem que ter no mínimo uma variação (unidade) e todos os atributos e combinações de variações podem ser obtidos através do recurso /attributes da categoria, conforme exemplo abaixo:

curl -X POST -H 'Authorization: Bearer $ACCESS_TOKEN' https://api.mercadolibre.com/categories/$CATEGORY_ID/attributes

Uma publicação contém atributos do nível de item, que são as características próprias do empreendimento, e que são representadas dentro da tag “attributes”. O título do lançamento, por exemplo, é representado pelo atributo DEVELOPMENT_NAME. Cada variação dentro do array “variations” representa a unidade em sí. Então, uma variação contem “attribute_combinations”, que seriam a PK da unidade. Não podem existir duas variações com a mesma combinação de valores nos atributos utilizados em “attribute_combinations”. Por exemplo, o valor “UNIT_NAME” pode ser o diferencial. Cada variação tem os próprios atributos da unidade, que se somam as características do empreendimento em geral.

Chamada:

curl -X POST -H 'Authorization: Bearer $ACCESS_TOKEN' https://api.mercadolibre.com/items

Exemplo:

curl -X POST -H 'Authorization: Bearer $ACCESS_TOKEN' -H "Content-Type: application/json" -d {

  "title": "Item de prueba - no ofertar - test - Domus 2222",
  "category_id": "MLA401806",
  "price": 157000,
  "currency_id": "USD",
  "available_quantity": 2,
  "buying_mode": "classified",
  "listing_type_id": "gold_premium",
  "condition": "new",
"location": {
    "address_line": "Solís 2222",
    "zip_code": "",
    "neighborhood": {
      "id": "TUxBQk9MSTgzODNa",
      "name": "Olivos"
    },
    "city": {
      "id": "TUxBQ1ZJQ2E3MTQz",
      "name": "Vicente López"
    },
    "state": {
      "id": "TUxBUEdSQWU4ZDkz",
      "name": "Bs.as. G.b.a. Norte"
    },
    "country": {
      "id": "AR",
      "name": "Argentina"
    },
    "open_hours": "",
    "latitude": -34.5101161,
    "longitude": -58.4765109
  },

"description": {"plain_text": "Una descripción de prueba  \n"},
  "pictures": [
    {
      "id": "872895-MLA26491094940_122017",
      "url": "http://mla-s2-p.mlstatic.com/872895-MLA26491094940_122017-O.jpg",
      "secure_url": "https://mla-s2-p.mlstatic.com/872895-MLA26491094940_122017-O.jpg",
      "size": "500x312",
      "max_size": "1200x750",
      "quality": ""
    },
    {
      "id": "681776-MLA26491106096_122017",
      "url": "http://mla-s2-p.mlstatic.com/681776-MLA26491106096_122017-O.jpg",
      "secure_url": "https://mla-s2-p.mlstatic.com/681776-MLA26491106096_122017-O.jpg",
      "size": "500x236",
      "max_size": "1200x567",
      "quality": ""
    },
    {
      "id": "925912-MLA26491099329_122017",
      "url": "http://mla-s2-p.mlstatic.com/925912-MLA26491099329_122017-O.jpg",
      "secure_url": "https://mla-s2-p.mlstatic.com/925912-MLA26491099329_122017-O.jpg",
      "size": "500x236",
      "max_size": "1200x567",
      "quality": ""
    },
    {
      "id": "614472-MLA26491102287_122017",
      "url": "http://mla-s2-p.mlstatic.com/614472-MLA26491102287_122017-O.jpg",
      "secure_url": "https://mla-s2-p.mlstatic.com/614472-MLA26491102287_122017-O.jpg",
      "size": "500x312",
      "max_size": "1200x750",
      "quality": ""
    },
    {
      "id": "657426-MLA26491106124_122017",
      "url": "http://mla-s2-p.mlstatic.com/657426-MLA26491106124_122017-O.jpg",
      "secure_url": "https://mla-s2-p.mlstatic.com/657426-MLA26491106124_122017-O.jpg",
      "size": "500x312",
      "max_size": "1200x750",
      "quality": ""
    },
    {
      "id": "600555-MLA26491106130_122017",
      "url": "http://mla-s2-p.mlstatic.com/600555-MLA26491106130_122017-O.jpg",
      "secure_url": "https://mla-s2-p.mlstatic.com/600555-MLA26491106130_122017-O.jpg",
      "size": "500x312",
      "max_size": "1200x750",
      "quality": ""
    },
    {
      "id": "919897-MLA26491061564_122017",
      "url": "http://mla-s2-p.mlstatic.com/919897-MLA26491061564_122017-O.jpg",
      "secure_url": "https://mla-s2-p.mlstatic.com/919897-MLA26491061564_122017-O.jpg",
      "size": "500x353",
      "max_size": "1200x848",
      "quality": ""
    },
    {
      "id": "674837-MLA26491070000_122017",
      "url": "http://mla-s2-p.mlstatic.com/674837-MLA26491070000_122017-O.jpg",
      "secure_url": "https://mla-s2-p.mlstatic.com/674837-MLA26491070000_122017-O.jpg",
      "size": "500x353",
      "max_size": "1200x848",
      "quality": ""
    },
    {
      "id": "913036-MLA26491092856_122017",
      "url": "http://mla-s2-p.mlstatic.com/913036-MLA26491092856_122017-O.jpg",
      "secure_url": "https://mla-s2-p.mlstatic.com/913036-MLA26491092856_122017-O.jpg",
      "size": "500x353",
      "max_size": "1200x848",
      "quality": ""
    }
  ],
  "shipping": {
    "mode": "not_specified",
    "methods": [],
    "tags": [],
    "dimensions": null,
    "local_pick_up": false,
    "free_shipping": false,
    "logistic_type": "not_specified",
    "store_pick_up": false
  },

  "seller_address": {
    "comment": "",
    "address_line": "Av. Libertador 4189",
    "zip_code": "1636",
    "city": {
      "id": "TUxBQ1ZJQ2E3MTQz",
      "name": "Vicente López"
    },
    "state": {
      "id": "AR-B",
      "name": "Buenos Aires"
    },
    "country": {
      "id": "AR",
      "name": "Argentina"
    }
    
  },

  "attributes": [
    {
      "id": "AVAILABLE_PARKING_SLOTS",
      "name": "Cocheras disponibles",
      "value_id": null,
      "value_name": "82",
      "value_struct": null,
      "attribute_group_id": "ADDITIONAL_CHARACTERISTICS_OF_DEVELOPMENT",
      "attribute_group_name": "Características adicionales del desarrollo"
    },
    {
      "id": "HAS_LIFT",
      "name": "Ascensor",
      "value_id": "242084",
      "value_name": "No",
      "value_struct": null,
      "attribute_group_id": "ADDITIONAL_CHARACTERISTICS_OF_DEVELOPMENT",
      "attribute_group_name": "Características adicionales del desarrollo"
    },
    {
      "id": "PARKING_PRICE_FROM",
      "name": "Precio cochera (Desde)",
      "value_id": null,
      "value_name": "30000",
      "value_struct": null,
      "attribute_group_id": "ADDITIONAL_CHARACTERISTICS_OF_DEVELOPMENT",
      "attribute_group_name": "Características adicionales del desarrollo"
    },
    {
      "id": "HAS_BARBECUE_AREA",
      "name": "Área de parrillas",
      "value_id": "242085",
      "value_name": "Sí",
      "value_struct": null,
      "attribute_group_id": "COMOYAMEN",
      "attribute_group_name": "Comodidades y amenities"
    },
    {
      "id": "HAS_BUSINESS_CENTER",
      "name": "Business center",
      "value_id": "242084",
      "value_name": "No",
      "value_struct": null,
      "attribute_group_id": "COMOYAMEN",
      "attribute_group_name": "Comodidades y amenities"
    },
    {
      "id": "HAS_CINEMA_HALL",
      "name": "Área de cine",
      "value_id": "242084",
      "value_name": "No",
      "value_struct": null,
      "attribute_group_id": "COMOYAMEN",
      "attribute_group_name": "Comodidades y amenities"
    },
    {
      "id": "HAS_CISTERN",
      "name": "Cisterna",
      "value_id": "242084",
      "value_name": "No",
      "value_struct": null,
      "attribute_group_id": "COMOYAMEN",
      "attribute_group_name": "Comodidades y amenities"
    },
    {
      "id": "HAS_COMMON_LAUNDRY",
      "name": "Laundry",
      "value_id": "242084",
      "value_name": "No",
      "value_struct": null,
      "attribute_group_id": "COMOYAMEN",
      "attribute_group_name": "Comodidades y amenities"
    },
    {
      "id": "HAS_FIRE_SYSTEM",
      "name": "Sistema contra incendio",
      "value_id": "242085",
      "value_name": "Sí",
      "value_struct": null,
      "attribute_group_id": "COMOYAMEN",
      "attribute_group_name": "Comodidades y amenities"
    },
    {
      "id": "HAS_GUEST_PARKING",
      "name": "Estacionamiento para visitantes",
      "value_id": "242085",
      "value_name": "Sí",
      "value_struct": null,
      "attribute_group_id": "COMOYAMEN",
      "attribute_group_name": "Comodidades y amenities"
    },
    {
      "id": "HAS_GYM",
      "name": "Gimnasio",
      "value_id": "242085",
      "value_name": "Sí",
      "value_struct": null,
      "attribute_group_id": "COMOYAMEN",
      "attribute_group_name": "Comodidades y amenities"
    },
    {
      "id": "HAS_JACUZZI",
      "name": "Jacuzzi",
      "value_id": "242084",
      "value_name": "No",
      "value_struct": null,
      "attribute_group_id": "COMOYAMEN",
      "attribute_group_name": "Comodidades y amenities"
    },
    {
      "id": "HAS_JOGGING_TRACK",
      "name": "Pista de jogging",
      "value_id": "242084",
      "value_name": "No",
      "value_struct": null,
      "attribute_group_id": "COMOYAMEN",
      "attribute_group_name": "Comodidades y amenities"
    },
    {
      "id": "HAS_LOBBY",
      "name": "Lobby",
      "value_id": "242085",
      "value_name": "Sí",
      "value_struct": null,
      "attribute_group_id": "COMOYAMEN",
      "attribute_group_name": "Comodidades y amenities"
    },
    {
      "id": "HAS_MULTIPURPOSE_ROOM",
      "name": "Salón de usos múltiples",
      "value_id": "242085",
      "value_name": "Sí",
      "value_struct": null,
      "attribute_group_id": "COMOYAMEN",
      "attribute_group_name": "Comodidades y amenities"
    },
    {
      "id": "HAS_PLAYGROUND",
      "name": "Área de juegos infantiles",
      "value_id": "242084",
      "value_name": "No",
      "value_struct": null,
      "attribute_group_id": "COMOYAMEN",
      "attribute_group_name": "Comodidades y amenities"
    },
    {
      "id": "HAS_SECURITY",
      "name": "Seguridad",
      "value_id": "242085",
      "value_name": "Sí",
      "value_struct": null,
      "attribute_group_id": "COMOYAMEN",
      "attribute_group_name": "Comodidades y amenities"
    },
    {
      "id": "HAS_STRIP_MALL",
      "name": "Locales comerciales",
      "value_id": "242084",
      "value_name": "No",
      "value_struct": null,
      "attribute_group_id": "COMOYAMEN",
      "attribute_group_name": "Comodidades y amenities"
    },
    {
      "id": "HAS_SWIMMING_POOL",
      "name": "Pileta",
      "value_id": "242085",
      "value_name": "Sí",
      "value_struct": null,
      "attribute_group_id": "COMOYAMEN",
      "attribute_group_name": "Comodidades y amenities"
    },
    {
      "id": "HAS_TENNIS_COURT",
      "name": "Cancha de tenis",
      "value_id": "242084",
      "value_name": "No",
      "value_struct": null,
      "attribute_group_id": "COMOYAMEN",
      "attribute_group_name": "Comodidades y amenities"
    },
    {
      "id": "MAX_BATHROOMS",
      "name": "Cantidad máxima de baños",
      "value_id": null,
      "value_name": "2",
      "value_struct": null,
      "attribute_group_id": "FIND",
      "attribute_group_name": "Ficha técnica"
    },
    {
      "id": "MAX_BEDROOMS",
      "name": "Cantidad máxima de dormitorios",
      "value_id": null,
      "value_name": "3",
      "value_struct": null,
      "attribute_group_id": "FIND",
      "attribute_group_name": "Ficha técnica"
    },
    {
      "id": "MAX_COVERED_AREA",
      "name": "Cantidad máxima de metros cubiertos",
      "value_id": null,
      "value_name": "176 m²",
      "value_struct": {
        "number": 176,
        "unit": "m²"
      },
      "attribute_group_id": "FIND",
      "attribute_group_name": "Ficha técnica"
    },
    {
      "id": "MAX_ROOMS",
      "name": "Cantidad máxima de ambientes",
      "value_id": null,
      "value_name": "4",
      "value_struct": null,
      "attribute_group_id": "FIND",
      "attribute_group_name": "Ficha técnica"
    },
    {
      "id": "MAX_TOTAL_AREA",
      "name": "Cantidad máxima de metros totales",
      "value_id": null,
      "value_name": "194 m²",
      "value_struct": {
        "number": 194,
        "unit": "m²"
      },
      "attribute_group_id": "FIND",
      "attribute_group_name": "Ficha técnica"
    },
    {
      "id": "MIN_BATHROOMS",
      "name": "Cantidad mínima de baños",
      "value_id": null,
      "value_name": "1",
      "value_struct": null,
      "attribute_group_id": "FIND",
      "attribute_group_name": "Ficha técnica"
    },
    {
      "id": "MIN_BEDROOMS",
      "name": "Cantidad mínima de dormitorios",
      "value_id": null,
      "value_name": "1",
      "value_struct": null,
      "attribute_group_id": "FIND",
      "attribute_group_name": "Ficha técnica"
    },
    {
      "id": "MIN_COVERED_AREA",
      "name": "Cantidad mínima de metros cubiertos",
      "value_id": null,
      "value_name": "40.79 m²",
      "value_struct": {
        "number": 40.79,
        "unit": "m²"
      },
      "attribute_group_id": "FIND",
      "attribute_group_name": "Ficha técnica"
    },
    {
      "id": "MIN_ROOMS",
      "name": "Cantidad mínima de ambientes",
      "value_id": null,
      "value_name": "1",
      "value_struct": null,
      "attribute_group_id": "FIND",
      "attribute_group_name": "Ficha técnica"
    },
    {
      "id": "MIN_TOTAL_AREA",
      "name": "Cantidad mínima de metros totales",
      "value_id": null,
      "value_name": "55.15 m²",
      "value_struct": {
        "number": 55.15,
        "unit": "m²"
      },
      "attribute_group_id": "FIND",
      "attribute_group_name": "Ficha técnica"
    },
    {
      "id": "SELECTED_PACKAGE",
      "name": "Paquete seleccionado",
      "value_id": null,
      "value_name": "1673515",
      "value_struct": null,
      "attribute_group_id": "FIND",
      "attribute_group_name": "Ficha técnica"
    },
    {
      "id": "OPERATION",
      "name": "Operación",
      "value_id": "242075",
      "value_name": "Venta",
      "value_struct": null,
      "attribute_group_id": "MAIN",
      "attribute_group_name": "Principales"
    },
    {
      "id": "OPERATION_SUBTYPE",
      "name": "Subtipo de operación",
      "value_id": "245034",
      "value_name": "Emprendimiento inmobiliario",
      "value_struct": null,
      "attribute_group_id": "MAIN",
      "attribute_group_name": "Principales"
    },
    {
      "id": "PROPERTY_TYPE",
      "name": "Inmueble",
      "value_id": "242062",
            "value_name": "Departamento",
      "value_struct": null,
      "attribute_group_id": "MAIN",
      "attribute_group_name": "Principales"
    },
    {
      "id": "DEVELOPMENT_NAME",
      "name": "Nombre del emprendimiento",
      "value_id": null,
      "value_name": "item de test - no ofertar - DOMUS 2222",
      "value_struct": null,
      "attribute_group_id": "MAIN_CHARACTERISTICS_OF_DEVELOPMENT",
      "attribute_group_name": "Características principales del desarrollo"
    },
    {
      "id": "POSSESSION_DATE",
      "name": "Fecha de entrega",
      "value_id": null,
      "value_name": "Enero 2019",
      "value_struct": null,
      "attribute_group_id": "MAIN_CHARACTERISTICS_OF_DEVELOPMENT",
      "attribute_group_name": "Características principales del desarrollo"
    },
    {
      "id": "POSSESSION_STATUS",
      "name": "Entrega",
      "value_id": "242414",
      "value_name": "Preventa",
      "value_struct": null,
      "attribute_group_id": "MAIN_CHARACTERISTICS_OF_DEVELOPMENT",
      "attribute_group_name": "Características principales del desarrollo"
    },
    {
      "id": "SUITABLE_FOR_MORTGAGE_LOAN",
      "name": "Apto crédito",
      "value_id": "242084",
      "value_name": "No",
      "value_struct": null,
      "attribute_group_id": "MAIN_CHARACTERISTICS_OF_DEVELOPMENT",
      "attribute_group_name": "Características principales del desarrollo"
    },
    {
      "id": "UNITS",
      "name": "Unidades totales",
      "value_id": null,
      "value_name": "66",
      "value_struct": null,
      "attribute_group_id": "MAIN_CHARACTERISTICS_OF_DEVELOPMENT",
      "attribute_group_name": "Características principales del desarrollo"
    }
  ],
  "variations": [
    {
      "price": 158000,
      "attribute_combinations": [
        {
          "id": "ROOMS",
          "name": "Ambientes",
          "value_id": null,
          "value_name": "2",
          "value_struct": null
        },
        {
          "id": "FULL_BATHROOMS",
          "name": "Baños",
          "value_id": null,
          "value_name": "1",
          "value_struct": null
        },
        {
          "id": "PARKING_LOTS",
          "name": "Cocheras",
          "value_id": null,
          "value_name": "0",
          "value_struct": null
        },
        {
          "id": "BEDROOMS",
          "name": "Dormitorios",
          "value_id": null,
          "value_name": "1",
          "value_struct": null
        },
        {
          "id": "UNIT_NAME",
          "name": "Nombre de la unidad",
          "value_id": null,
          "value_name": "110",
          "value_struct": null
        },
        {
          "id": "MODEL_NAME",
          "name": "Nombre del modelo",
          "value_id": null,
          "value_name": "2 AMBIENTES",
          "value_struct": null
        },
        {
          "id": "COVERED_AREA",
          "name": "Superficie cubierta",
          "value_id": null,
          "value_name": "51 m²",
          "value_struct": {
            "number": 51,
            "unit": "m²"
          }
        },
        {
          "id": "TOTAL_AREA",
          "name": "Superficie total",
          "value_id": null,
          "value_name": "57 m²",
          "value_struct": {
            "number": 57,
            "unit": "m²"
          }
        }
      ],
      "available_quantity": 1,
      "sold_quantity": 0,
      "sale_terms": [],
      "picture_ids": [
        "674837-MLA26491070000_122017"
      ]
      
    },
    {
      "price": 161000,
      "attribute_combinations": [
        {
          "id": "ROOMS",
          "name": "Ambientes",
          "value_id": null,
          "value_name": "1",
          "value_struct": null
        },
        {
          "id": "FULL_BATHROOMS",
          "name": "Baños",
          "value_id": null,
          "value_name": "1",
          "value_struct": null
        },
        {
          "id": "PARKING_LOTS",
          "name": "Cocheras",
          "value_id": null,
          "value_name": "0",
          "value_struct": null
        },
        {
          "id": "BEDROOMS",
          "name": "Dormitorios",
          "value_id": null,
          "value_name": "1",
          "value_struct": null
        },
        {
          "id": "UNIT_NAME",
          "name": "Nombre de la unidad",
          "value_id": null,
          "value_name": "3 OESTE",
          "value_struct": null
        },
        {
          "id": "MODEL_NAME",
          "name": "Nombre del modelo",
          "value_id": null,
          "value_name": "1 AMBIENTE",
          "value_struct": null
        },
        {
          "id": "COVERED_AREA",
          "name": "Superficie cubierta",
          "value_id": null,
          "value_name": "40.79 m²",
          "value_struct": {
            "number": 40.79,
            "unit": "m²"
          }
        },
        {
          "id": "TOTAL_AREA",
          "name": "Superficie total",
          "value_id": null,
          "value_name": "55.15 m²",
          "value_struct": {
            "number": 55.15,
            "unit": "m²"
          }
        }
      ],
      "available_quantity": 1,
      
      
      "picture_ids": [
        "913036-MLA26491092856_122017"
      ]
      
      
    }
  ]
  }

https://api.mercadolibre.com/items

Resposta:

{
    "id": "MLA843263657",
    "site_id": "MLA",
    "title": "Item De Prueba - No Ofertar - Test - Domus 2222",
    "subtitle": null,
    "seller_id": 534776711,
    "category_id": "MLA401806",
    "official_store_id": null,
    "price": 158000,
    "base_price": 158000,
    "original_price": null,
    "inventory_id": null,
    "currency_id": "USD",
    "initial_quantity": 2,
    "available_quantity": 2,
    "sold_quantity": 0,
    "sale_terms": [],
    "buying_mode": "classified",
    "listing_type_id": "gold_premium",
    "start_time": "2020-03-11T16:22:49.562Z",
    "stop_time": "2020-06-12T04:00:00.000Z",
    "end_time": "2020-06-12T04:00:00.000Z",
    "expiration_time": null,
    "condition": "new",
    "permalink": "http://departamento.mercadolibre.com.ar/MLA-843263657-item-de-prueba-no-ofertar-test-domus-2222-_JM",
    "pictures": [
        {
            "id": "872895-MLA26491094940_122017",
            "url": "http://mla-s1-p.mlstatic.com/872895-MLA26491094940_122017-O.jpg",
            "secure_url": "https://mla-s1-p.mlstatic.com/872895-MLA26491094940_122017-O.jpg",
            "size": "500x312",
            "max_size": "1200x750",
            "quality": ""
        },
        {
            "id": "681776-MLA26491106096_122017",
            "url": "http://mla-s1-p.mlstatic.com/681776-MLA26491106096_122017-O.jpg",
            "secure_url": "https://mla-s1-p.mlstatic.com/681776-MLA26491106096_122017-O.jpg",
            "size": "500x236",
            "max_size": "1200x567",
            "quality": ""
        },
        {
            "id": "925912-MLA26491099329_122017",
            "url": "http://mla-s1-p.mlstatic.com/925912-MLA26491099329_122017-O.jpg",
            "secure_url": "https://mla-s1-p.mlstatic.com/925912-MLA26491099329_122017-O.jpg",
            "size": "500x236",
            "max_size": "1200x567",
            "quality": ""
        },
        {
            "id": "614472-MLA26491102287_122017",
            "url": "http://mla-s1-p.mlstatic.com/614472-MLA26491102287_122017-O.jpg",
            "secure_url": "https://mla-s1-p.mlstatic.com/614472-MLA26491102287_122017-O.jpg",
            "size": "500x312",
            "max_size": "1200x750",
            "quality": ""
        },
        {
            "id": "657426-MLA26491106124_122017",
            "url": "http://mla-s1-p.mlstatic.com/657426-MLA26491106124_122017-O.jpg",
            "secure_url": "https://mla-s1-p.mlstatic.com/657426-MLA26491106124_122017-O.jpg",
            "size": "500x312",
            "max_size": "1200x750",
            "quality": ""
        },
        {
            "id": "600555-MLA26491106130_122017",
            "url": "http://mla-s2-p.mlstatic.com/600555-MLA26491106130_122017-O.jpg",
            "secure_url": "https://mla-s2-p.mlstatic.com/600555-MLA26491106130_122017-O.jpg",
            "size": "500x312",
            "max_size": "1200x750",
            "quality": ""
        },
        {
            "id": "919897-MLA26491061564_122017",
            "url": "http://mla-s1-p.mlstatic.com/919897-MLA26491061564_122017-O.jpg",
            "secure_url": "https://mla-s1-p.mlstatic.com/919897-MLA26491061564_122017-O.jpg",
            "size": "500x353",
            "max_size": "1200x848",
            "quality": ""
        },
        {
            "id": "674837-MLA26491070000_122017",
            "url": "http://mla-s2-p.mlstatic.com/674837-MLA26491070000_122017-O.jpg",
            "secure_url": "https://mla-s2-p.mlstatic.com/674837-MLA26491070000_122017-O.jpg",
            "size": "500x353",
            "max_size": "1200x848",
            "quality": ""
        },
        {
            "id": "913036-MLA26491092856_122017",
            "url": "http://mla-s1-p.mlstatic.com/913036-MLA26491092856_122017-O.jpg",
            "secure_url": "https://mla-s1-p.mlstatic.com/913036-MLA26491092856_122017-O.jpg",
            "size": "500x353",
            "max_size": "1200x848",
            "quality": ""
        }
    ],
    "video_id": null,
    "descriptions": [
        {
            "id": "MLA843263657-2561842362"
        }
    ],
    "accepts_mercadopago": false,
    "non_mercado_pago_payment_methods": [],
    "shipping": {
        "mode": "not_specified",
        "local_pick_up": false,
        "free_shipping": false,
        "methods": [],
        "dimensions": null,
        "tags": [],
        "logistic_type": "not_specified",
        "store_pick_up": false
    },
    "international_delivery_mode": "none",
    "seller_address": {
        "id": 1091410987,
        "comment": "",
        "address_line": "Test Address 123",
        "zip_code": "1414",
        "city": {
            "id": "",
            "name": "Palermo"
        },
        "state": {
            "id": "AR-C",
            "name": "Capital Federal"
        },
        "country": {
            "id": "AR",
            "name": "Argentina"
        },
        "latitude": -34.5780655,
        "longitude": -58.4265317,
        "search_location": {
            "neighborhood": {
                "id": "TUxBQlBBTDI1MTVa",
                "name": "Palermo"
            },
            "city": {
                "id": "TUxBQ0NBUGZlZG1sYQ",
                "name": "Capital Federal"
            },
            "state": {
                "id": "TUxBUENBUGw3M2E1",
                "name": "Capital Federal"
            }
        }
    },
    "seller_contact": {
        "contact": "",
        "other_info": "",
        "area_code": "",
        "phone": "",
        "area_code2": "",
        "phone2": "",
        "email": "",
        "webpage": "",
        "country_code": "",
        "country_code2": ""
    },
    "location": {
        "address_line": "Solís 2222",
        "zip_code": "",
        "neighborhood": {
            "id": "TUxBQk9MSTgzODNa",
            "name": "Olivos"
        },
        "city": {
            "id": "TUxBQ1ZJQ2E3MTQz",
            "name": "Vicente López"
        },
        "state": {
            "id": "TUxBUEdSQWU4ZDkz",
            "name": "Bs.as. G.b.a. Norte"
        },
        "country": {
            "id": "AR",
            "name": "Argentina"
        },
        "latitude": -34.5101161,
        "longitude": -58.4765109,
        "open_hours": ""
    },
    "geolocation": {
        "latitude": -34.5101161,
        "longitude": -58.4765109
    },
    "coverage_areas": [],
    "attributes": [
        {
            "id": "ITEM_CONDITION",
            "name": "Condición del ítem",
            "value_id": "2230284",
            "value_name": "Nuevo",
            "value_struct": null,
            "values": [
                {
                    "id": "2230284",
                    "name": "Nuevo",
                    "struct": null
                }
            ],
            "attribute_group_id": "",
            "attribute_group_name": ""
        },
        {
            "id": "AVAILABLE_PARKING_SLOTS",
            "name": "Cocheras disponibles",
            "value_id": null,
            "value_name": "82",
            "value_struct": null,
            "values": [
                {
                    "id": null,
                    "name": "82",
                    "struct": null
                }
            ],
            "attribute_group_id": "ADDITIONAL_CHARACTERISTICS_OF_DEVELOPMENT",
            "attribute_group_name": "Características adicionales del desarrollo"
        },
        {
            "id": "HAS_LIFT",
            "name": "Ascensor",
            "value_id": "242084",
            "value_name": "No",
            "value_struct": null,
            "values": [
                {
                    "id": "242084",
                    "name": "No",
                    "struct": null
                }
            ],
            "attribute_group_id": "ADDITIONAL_CHARACTERISTICS_OF_DEVELOPMENT",
            "attribute_group_name": "Características adicionales del desarrollo"
        },
        {
            "id": "PARKING_PRICE_FROM",
            "name": "Precio cochera (Desde)",
            "value_id": null,
            "value_name": "30000",
            "value_struct": null,
            "values": [
                {
                    "id": null,
                    "name": "30000",
                    "struct": null
                }
            ],
            "attribute_group_id": "ADDITIONAL_CHARACTERISTICS_OF_DEVELOPMENT",
            "attribute_group_name": "Características adicionales del desarrollo"
        },
        {
            "id": "HAS_BARBECUE_AREA",
            "name": "Área de parrillas",
            "value_id": "242085",
            "value_name": "Sí",
            "value_struct": null,
            "values": [
                {
                    "id": "242085",
                    "name": "Sí",
                    "struct": null
                }
            ],
            "attribute_group_id": "COMOYAMEN",
            "attribute_group_name": "Comodidades y amenities"
        },
        {
            "id": "HAS_BUSINESS_CENTER",
            "name": "Business center",
            "value_id": "242084",
            "value_name": "No",
            "value_struct": null,
            "values": [
                {
                    "id": "242084",
                    "name": "No",
                    "struct": null
                }
            ],
            "attribute_group_id": "COMOYAMEN",
            "attribute_group_name": "Comodidades y amenities"
        },
        {
            "id": "HAS_CINEMA_HALL",
            "name": "Área de cine",
            "value_id": "242084",
            "value_name": "No",
            "value_struct": null,
            "values": [
                {
                    "id": "242084",
                    "name": "No",
                    "struct": null
                }
            ],
            "attribute_group_id": "COMOYAMEN",
            "attribute_group_name": "Comodidades y amenities"
        },
        {
            "id": "HAS_COMMON_LAUNDRY",
            "name": "Laundry",
            "value_id": "242084",
            "value_name": "No",
            "value_struct": null,
            "values": [
                {
                    "id": "242084",
                    "name": "No",
                    "struct": null
                }
            ],
            "attribute_group_id": "COMOYAMEN",
            "attribute_group_name": "Comodidades y amenities"
        },
        {
            "id": "HAS_FIRE_SYSTEM",
            "name": "Sistema contra incendio",
            "value_id": "242085",
            "value_name": "Sí",
            "value_struct": null,
            "values": [
                {
                    "id": "242085",
                    "name": "Sí",
                    "struct": null
                }
            ],
            "attribute_group_id": "COMOYAMEN",
            "attribute_group_name": "Comodidades y amenities"
        },
        {
            "id": "HAS_GUEST_PARKING",
            "name": "Estacionamiento para visitantes",
            "value_id": "242085",
            "value_name": "Sí",
            "value_struct": null,
            "values": [
                {
                    "id": "242085",
                    "name": "Sí",
                    "struct": null
                }
            ],
            "attribute_group_id": "COMOYAMEN",
            "attribute_group_name": "Comodidades y amenities"
        },
        {
            "id": "HAS_GYM",
            "name": "Gimnasio",
            "value_id": "242085",
            "value_name": "Sí",
            "value_struct": null,
            "values": [
                {
                    "id": "242085",
                    "name": "Sí",
                    "struct": null
                }
            ],
            "attribute_group_id": "COMOYAMEN",
            "attribute_group_name": "Comodidades y amenities"
        },
        {
            "id": "HAS_JACUZZI",
            "name": "Jacuzzi",
            "value_id": "242084",
            "value_name": "No",
            "value_struct": null,
            "values": [
                {
                    "id": "242084",
                    "name": "No",
                    "struct": null
                }
            ],
            "attribute_group_id": "COMOYAMEN",
            "attribute_group_name": "Comodidades y amenities"
        },
        {
            "id": "HAS_LOBBY",
            "name": "Lobby",
            "value_id": "242085",
            "value_name": "Sí",
            "value_struct": null,
            "values": [
                {
                    "id": "242085",
                    "name": "Sí",
                    "struct": null
                }
            ],
            "attribute_group_id": "COMOYAMEN",
            "attribute_group_name": "Comodidades y amenities"
        },
        {
            "id": "HAS_MULTIPURPOSE_ROOM",
            "name": "Salón de usos múltiples",
            "value_id": "242085",
            "value_name": "Sí",
            "value_struct": null,
            "values": [
                {
                    "id": "242085",
                    "name": "Sí",
                    "struct": null
                }
            ],
            "attribute_group_id": "COMOYAMEN",
            "attribute_group_name": "Comodidades y amenities"
        },
        {
            "id": "HAS_PLAYGROUND",
            "name": "Área de juegos infantiles",
            "value_id": "242084",
            "value_name": "No",
            "value_struct": null,
            "values": [
                {
                    "id": "242084",
                    "name": "No",
                    "struct": null
                }
            ],
            "attribute_group_id": "COMOYAMEN",
            "attribute_group_name": "Comodidades y amenities"
        },
        {
            "id": "HAS_SECURITY",
            "name": "Seguridad",
            "value_id": "242085",
            "value_name": "Sí",
            "value_struct": null,
            "values": [
                {
                    "id": "242085",
                    "name": "Sí",
                    "struct": null
                }
            ],
            "attribute_group_id": "COMOYAMEN",
            "attribute_group_name": "Comodidades y amenities"
        },
        {
            "id": "HAS_STRIP_MALL",
            "name": "Locales comerciales",
            "value_id": "242084",
            "value_name": "No",
            "value_struct": null,
            "values": [
                {
                    "id": "242084",
                    "name": "No",
                    "struct": null
                }
            ],
            "attribute_group_id": "COMOYAMEN",
            "attribute_group_name": "Comodidades y amenities"
        },
        {
            "id": "HAS_SWIMMING_POOL",
            "name": "Pileta",
            "value_id": "242085",
            "value_name": "Sí",
            "value_struct": null,
            "values": [
                {
                    "id": "242085",
                    "name": "Sí",
                    "struct": null
                }
            ],
            "attribute_group_id": "COMOYAMEN",
            "attribute_group_name": "Comodidades y amenities"
        },
        {
            "id": "HAS_TENNIS_COURT",
            "name": "Cancha de tenis",
            "value_id": "242084",
            "value_name": "No",
            "value_struct": null,
            "values": [
                {
                    "id": "242084",
                    "name": "No",
                    "struct": null
                }
            ],
            "attribute_group_id": "COMOYAMEN",
            "attribute_group_name": "Comodidades y amenities"
        },
        {
            "id": "MAX_BATHROOMS",
            "name": "Cantidad máxima de baños",
            "value_id": null,
            "value_name": "2",
            "value_struct": null,
            "values": [
                {
                    "id": null,
                    "name": "2",
                    "struct": null
                }
            ],
            "attribute_group_id": "FIND",
            "attribute_group_name": "Ficha técnica"
        },
        {
            "id": "MAX_BEDROOMS",
            "name": "Cantidad máxima de dormitorios",
            "value_id": null,
            "value_name": "3",
            "value_struct": null,
            "values": [
                {
                    "id": null,
                    "name": "3",
                    "struct": null
                }
            ],
            "attribute_group_id": "FIND",
            "attribute_group_name": "Ficha técnica"
        },
        {
            "id": "MAX_COVERED_AREA",
            "name": "Cantidad máxima de metros cubiertos",
            "value_id": null,
            "value_name": "176 m²",
            "value_struct": {
                "number": 176,
                "unit": "m²"
            },
            "values": [
                {
                    "id": null,
                    "name": "176 m²",
                    "struct": {
                        "number": 176,
                        "unit": "m²"
                    }
                }
            ],
            "attribute_group_id": "FIND",
            "attribute_group_name": "Ficha técnica"
        },
        {
            "id": "MAX_ROOMS",
            "name": "Cantidad máxima de ambientes",
            "value_id": null,
            "value_name": "4",
            "value_struct": null,
            "values": [
                {
                    "id": null,
                    "name": "4",
                    "struct": null
                }
            ],
            "attribute_group_id": "FIND",
            "attribute_group_name": "Ficha técnica"
        },
        {
            "id": "MAX_TOTAL_AREA",
            "name": "Cantidad máxima de metros totales",
            "value_id": null,
            "value_name": "194 m²",
            "value_struct": {
                "number": 194,
                "unit": "m²"
            },
            "values": [
                {
                    "id": null,
                    "name": "194 m²",
                    "struct": {
                        "number": 194,
                        "unit": "m²"
                    }
                }
            ],
            "attribute_group_id": "FIND",
            "attribute_group_name": "Ficha técnica"
        },
        {
            "id": "MIN_BATHROOMS",
            "name": "Cantidad mínima de baños",
            "value_id": null,
            "value_name": "1",
            "value_struct": null,
            "values": [
                {
                    "id": null,
                    "name": "1",
                    "struct": null
                }
            ],
            "attribute_group_id": "FIND",
            "attribute_group_name": "Ficha técnica"
        },
        {
            "id": "MIN_BEDROOMS",
            "name": "Cantidad mínima de dormitorios",
            "value_id": null,
            "value_name": "1",
            "value_struct": null,
            "values": [
                {
                    "id": null,
                    "name": "1",
                    "struct": null
                }
            ],
            "attribute_group_id": "FIND",
            "attribute_group_name": "Ficha técnica"
        },
        {
            "id": "MIN_COVERED_AREA",
            "name": "Cantidad mínima de metros cubiertos",
            "value_id": null,
            "value_name": "40.79 m²",
            "value_struct": {
                "number": 40.79,
                "unit": "m²"
            },
            "values": [
                {
                    "id": null,
                    "name": "40.79 m²",
                    "struct": {
                        "number": 40.79,
                        "unit": "m²"
                    }
                }
            ],
            "attribute_group_id": "FIND",
            "attribute_group_name": "Ficha técnica"
        },
        {
            "id": "MIN_ROOMS",
            "name": "Cantidad mínima de ambientes",
            "value_id": null,
            "value_name": "1",
            "value_struct": null,
            "values": [
                {
                    "id": null,
                    "name": "1",
                    "struct": null
                }
            ],
            "attribute_group_id": "FIND",
            "attribute_group_name": "Ficha técnica"
        },
        {
            "id": "MIN_TOTAL_AREA",
            "name": "Cantidad mínima de metros totales",
            "value_id": null,
            "value_name": "55.15 m²",
            "value_struct": {
                "number": 55.15,
                "unit": "m²"
            },
            "values": [
                {
                    "id": null,
                    "name": "55.15 m²",
                    "struct": {
                        "number": 55.15,
                        "unit": "m²"
                    }
                }
            ],
            "attribute_group_id": "FIND",
            "attribute_group_name": "Ficha técnica"
        },
        {
            "id": "SELECTED_PACKAGE",
            "name": "Paquete seleccionado",
            "value_id": null,
            "value_name": "1673515",
            "value_struct": null,
            "values": [
                {
                    "id": null,
                    "name": "1673515",
                    "struct": null
                }
            ],
            "attribute_group_id": "FIND",
            "attribute_group_name": "Ficha técnica"
        },
        {
            "id": "OPERATION",
            "name": "Operación",
            "value_id": "242075",
            "value_name": "Venta",
            "value_struct": null,
            "values": [
                {
                    "id": "242075",
                    "name": "Venta",
                    "struct": null
                }
            ],
            "attribute_group_id": "MAIN",
            "attribute_group_name": "Principales"
        },
        {
            "id": "OPERATION_SUBTYPE",
            "name": "Subtipo de operación",
            "value_id": "245034",
            "value_name": "Emprendimiento",
            "value_struct": null,
            "values": [
                {
                    "id": "245034",
                    "name": "Emprendimiento",
                    "struct": null
                }
            ],
            "attribute_group_id": "MAIN",
            "attribute_group_name": "Principales"
        },
        {
            "id": "PROPERTY_TYPE",
            "name": "Inmueble",
            "value_id": "242062",
            "value_name": "Departamento",
            "value_struct": null,
            "values": [
                {
                    "id": "242062",
                    "name": "Departamento",
                    "struct": null
                }
            ],
            "attribute_group_id": "MAIN",
            "attribute_group_name": "Principales"
        },
        {
            "id": "DEVELOPMENT_NAME",
            "name": "Nombre del emprendimiento",
            "value_id": null,
            "value_name": "item de test - no ofertar - DOMUS 2222",
            "value_struct": null,
            "values": [
                {
                    "id": null,
                    "name": "item de test - no ofertar - DOMUS 2222",
                    "struct": null
                }
            ],
            "attribute_group_id": "MAIN_CHARACTERISTICS_OF_DEVELOPMENT",
            "attribute_group_name": "Características principales del desarrollo"
        },
        {
            "id": "POSSESSION_DATE",
            "name": "Fecha de entrega",
            "value_id": null,
            "value_name": "Enero 2019",
            "value_struct": null,
            "values": [
                {
                    "id": null,
                    "name": "Enero 2019",
                    "struct": null
                }
            ],
            "attribute_group_id": "MAIN_CHARACTERISTICS_OF_DEVELOPMENT",
            "attribute_group_name": "Características principales del desarrollo"
        },
        {
            "id": "POSSESSION_STATUS",
            "name": "Entrega",
            "value_id": "242414",
            "value_name": "Preventa",
            "value_struct": null,
            "values": [
                {
                    "id": "242414",
                    "name": "Preventa",
                    "struct": null
                }
            ],
            "attribute_group_id": "MAIN_CHARACTERISTICS_OF_DEVELOPMENT",
            "attribute_group_name": "Características principales del desarrollo"
        },
        {
            "id": "SUITABLE_FOR_MORTGAGE_LOAN",
            "name": "Apto crédito",
            "value_id": "242084",
            "value_name": "No",
            "value_struct": null,
            "values": [
                {
                    "id": "242084",
                    "name": "No",
                    "struct": null
                }
            ],
            "attribute_group_id": "MAIN_CHARACTERISTICS_OF_DEVELOPMENT",
            "attribute_group_name": "Características principales del desarrollo"
        },
        {
            "id": "UNITS",
            "name": "Unidades totales",
            "value_id": null,
            "value_name": "66",
            "value_struct": null,
            "values": [
                {
                    "id": null,
                    "name": "66",
                    "struct": null
                }
            ],
            "attribute_group_id": "MAIN_CHARACTERISTICS_OF_DEVELOPMENT",
            "attribute_group_name": "Características principales del desarrollo"
        },
        {
            "id": "HAS_CISTERN",
            "name": "Cisterna",
            "value_id": "242084",
            "value_name": "No",
            "value_struct": null,
            "values": [
                {
                    "id": "242084",
                    "name": "No",
                    "struct": null
                }
            ],
            "attribute_group_id": "OTHERS",
            "attribute_group_name": "Otros"
        },
        {
            "id": "HAS_JOGGING_TRACK",
            "name": "Pista de jogging",
            "value_id": "242084",
            "value_name": "No",
            "value_struct": null,
            "values": [
                {
                    "id": "242084",
                    "name": "No",
                    "struct": null
                }
            ],
            "attribute_group_id": "OTHERS",
            "attribute_group_name": "Otros"
        },
        {
            "id": "PROPERTY_AGE",
            "name": "Antigüedad",
            "value_id": null,
            "value_name": "0 años",
            "value_struct": {
                "number": 0,
                "unit": "años"
            },
            "values": [
                {
                    "id": null,
                    "name": "0 años",
                    "struct": {
                        "number": 0,
                        "unit": "años"
                    }
                }
            ],
            "attribute_group_id": "OTHERS",
            "attribute_group_name": "Otros"
        }
    ],
    "warnings": [
        {
            "department": "items",
            "cause_id": 314,
            "code": "item.price.dropped",
            "message": "Item price was changed by the lowest-price variation.",
            "references": [
                "item.price"
            ]
        }
    ],
    "listing_source": "",
    "variations": [
        {
            "id": 52173477243,
            "attribute_combinations": [
                {
                    "id": "ROOMS",
                    "name": "Ambientes",
                    "value_id": null,
                    "value_name": "2",
                    "value_struct": null,
                    "values": [
                        {
                            "id": null,
                            "name": "2",
                            "struct": null
                        }
                    ]
                },
                {
                    "id": "FULL_BATHROOMS",
                    "name": "Baños",
                    "value_id": null,
                    "value_name": "1",
                    "value_struct": null,
                    "values": [
                        {
                            "id": null,
                            "name": "1",
                            "struct": null
                        }
                    ]
                },
                {
                    "id": "PARKING_LOTS",
                    "name": "Cocheras",
                    "value_id": null,
                    "value_name": "0",
                    "value_struct": null,
                    "values": [
                        {
                            "id": null,
                            "name": "0",
                            "struct": null
                        }
                    ]
                },
                {
                    "id": "BEDROOMS",
                    "name": "Dormitorios",
                    "value_id": null,
                    "value_name": "1",
                    "value_struct": null,
                    "values": [
                        {
                            "id": null,
                            "name": "1",
                            "struct": null
                        }
                    ]
                },
                {
                    "id": "UNIT_NAME",
                    "name": "Nombre de la unidad",
                    "value_id": null,
                    "value_name": "110",
                    "value_struct": null,
                    "values": [
                        {
                            "id": null,
                            "name": "110",
                            "struct": null
                        }
                    ]
                },
                {
                    "id": "MODEL_NAME",
                    "name": "Nombre del modelo",
                    "value_id": null,
                    "value_name": "2 AMBIENTES",
                    "value_struct": null,
                    "values": [
                        {
                            "id": null,
                            "name": "2 AMBIENTES",
                            "struct": null
                        }
                    ]
                },
                {
                    "id": "COVERED_AREA",
                    "name": "Superficie cubierta",
                    "value_id": null,
                    "value_name": "51 m²",
                    "value_struct": {
                        "number": 51,
                        "unit": "m²"
                    },
                    "values": [
                        {
                            "id": null,
                            "name": "51 m²",
                            "struct": {
                                "number": 51,
                                "unit": "m²"
                            }
                        }
                    ]
                },
                {
                    "id": "TOTAL_AREA",
                    "name": "Superficie total",
                    "value_id": null,
                    "value_name": "57 m²",
                    "value_struct": {
                        "number": 57,
                        "unit": "m²"
                    },
                    "values": [
                        {
                            "id": null,
                            "name": "57 m²",
                            "struct": {
                                "number": 57,
                                "unit": "m²"
                            }
                        }
                    ]
                }
            ],
            "price": 158000,
            "available_quantity": 1,
            "sold_quantity": 0,
            "sale_terms": [],
            "picture_ids": [
                "674837-MLA26491070000_122017"
            ],
            "seller_custom_field": null,
            "catalog_product_id": null,
            "attributes": [],
            "inventory_id": null,
            "item_relations": []
        },
        {
            "id": 52173477261,
            "attribute_combinations": [
                {
                    "id": "ROOMS",
                    "name": "Ambientes",
                    "value_id": null,
                    "value_name": "1",
                    "value_struct": null,
                    "values": [
                        {
                            "id": null,
                            "name": "1",
                            "struct": null
                        }
                    ]
                },
                {
                    "id": "FULL_BATHROOMS",
                    "name": "Baños",
                    "value_id": null,
                    "value_name": "1",
                    "value_struct": null,
                    "values": [
                        {
                            "id": null,
                            "name": "1",
                            "struct": null
                        }
                    ]
                },
                {
                    "id": "PARKING_LOTS",
                    "name": "Cocheras",
                    "value_id": null,
                    "value_name": "0",
                    "value_struct": null,
                    "values": [
                        {
                            "id": null,
                            "name": "0",
                            "struct": null
                        }
                    ]
                },
                {
                    "id": "BEDROOMS",
                    "name": "Dormitorios",
                    "value_id": null,
                    "value_name": "1",
                    "value_struct": null,
                    "values": [
                        {
                            "id": null,
                            "name": "1",
                            "struct": null
                        }
                    ]
                },
                {
                    "id": "UNIT_NAME",
                    "name": "Nombre de la unidad",
                    "value_id": null,
                    "value_name": "3 OESTE",
                    "value_struct": null,
                    "values": [
                        {
                            "id": null,
                            "name": "3 OESTE",
                            "struct": null
                        }
                    ]
                },
                {
                    "id": "MODEL_NAME",
                    "name": "Nombre del modelo",
                    "value_id": null,
                    "value_name": "1 AMBIENTE",
                    "value_struct": null,
                    "values": [
                        {
                            "id": null,
                            "name": "1 AMBIENTE",
                            "struct": null
                        }
                    ]
                },
                {
                    "id": "COVERED_AREA",
                    "name": "Superficie cubierta",
                    "value_id": null,
                    "value_name": "40.79 m²",
                    "value_struct": {
                        "number": 40.79,
                        "unit": "m²"
                    },
                    "values": [
                        {
                            "id": null,
                            "name": "40.79 m²",
                            "struct": {
                                "number": 40.79,
                                "unit": "m²"
                            }
                        }
                    ]
                },
                {
                    "id": "TOTAL_AREA",
                    "name": "Superficie total",
                    "value_id": null,
                    "value_name": "55.15 m²",
                    "value_struct": {
                        "number": 55.15,
                        "unit": "m²"
                    },
                    "values": [
                        {
                            "id": null,
                            "name": "55.15 m²",
                            "struct": {
                                "number": 55.15,
                                "unit": "m²"
                            }
                        }
                    ]
                }
            ],
            "price": 161000,
            "available_quantity": 1,
            "sold_quantity": 0,
            "sale_terms": [],
            "picture_ids": [
                "913036-MLA26491092856_122017"
            ],
            "seller_custom_field": null,
            "catalog_product_id": null,
            "attributes": [],
            "inventory_id": null,
            "item_relations": []
        }
    ],
    "thumbnail": "http://mla-s1-p.mlstatic.com/872895-MLA26491094940_122017-I.jpg",
    "secure_thumbnail": "https://mla-s1-p.mlstatic.com/872895-MLA26491094940_122017-I.jpg",
    "status": "active",
    "sub_status": [],
    "tags": [
        "test_item"
    ],
    "warranty": null,
    "catalog_product_id": null,
    "domain_id": null,
    "seller_custom_field": null,
    "parent_item_id": null,
    "differential_pricing": null,
    "deal_ids": [],
    "automatic_relist": false,
    "date_created": "2020-03-11T16:22:50.121Z",
    "last_updated": "2020-03-11T16:22:50.121Z",
    "health": null,
    "catalog_listing": false,
    "item_relations": []
}

Um lançamento imobiliário não pode ter no seus variações uma moeda diferente do preço do lançamento.

"title": "Casas financiadas en pesos y planes de ahorro",
"category_id": "MLA401805",
"price":"XXXXXX",
"currency_id":"ARS"

E em cada variação, você deve mencionar apenas o "preço" sem mencionar a moeda novamente.


Cotações

Uma cotação ocorre quando um possível comprador realiza uma cotação em um anúncio do tipo “lançamento imobiliário”. Ele escolhe a planta e a unidade, e a partir daí, pode saber o preço. Uma cotação é um documento que contem informação do vendedor, do item e do comprador, no momento que a cotação é criada. Quando o usuário solicita uma cotação, a informação do item é “congelada” e mantem assim para garantir o preço do momento em que a cotação foi realizada, caso existam alterações posteriores. Para alguns métodos abaixo, o integrador deve enviar a variável “caller.type” para identificar quem é o chamador da ação. Pode ser “seller” ou “user”. Geralmente para as aplicações de lançamentos, será o seller está pessoa.


Como seu app sabe de uma cotação?

A criação de uma cotação é um evento que se produz do lado do Mercado Livre, portanto, você deverá se cadastrar no nosso feed de quotations para saber em tempo real quando esse evento ocorre.
Vá para o nosso Gerenciador de Aplicativos e edite as Configurações de Notificações de seu aplicativo. Mais informações sobre criar e configurar um novo aplicativo neste link.
Você deve selecionar um Callback URL: configure a URL pública do domínio onde você quiser receber todas as notificações do Mercado Livre. 

Nota:
Se quiser habilitar as notificações de cotações, selecione a opção “quotations”, seção “Topics”, no gerenciador de aplicativos.
Esta configuração permite que você interaja com as notificações do Mercado Livre. Todas as cotações realizadas pelos interessados nos anúncios de empreendimentos serão notificadas no seu callback URL.


Excluir uma cotação

Para excluir uma cotação usando a API do Mercado Libre, um HTTP PUT deve ser enviado no seguinte formato:

curl -X PUT -H 'Authorization: Bearer $ACCESS_TOKEN' -d '{
"delete" : true
}' 'https://api.mercadolibre.com/quotations/$QUOTATIONID?caller.type=$CALLER.TYPE'


Buscar uma cotação

Para buscar este número, usar um HTTP GET no seguinte formato:

Chamada:

curl -X GET -H 'Authorization: Bearer $ACCESS_TOKEN' https://api.mercadolibre.com/quotations/$QUOTATIONID?caller.type=$CALLER.TYPE

Exemplo:

curl -X GET -H 'Authorization: Bearer $ACCESS_TOKEN' https://api.mercadolibre.com/quotations/5992689?caller.type=seller.TYPE

Resposta:

{
    "id": 5992689,
    "user": {
        "id": 535115061,
        "nickname": "TESTIIU8DDRW",
        "registration_date": "2020-03-11T16:53:15Z",
        "first_name": "Test",
        "last_name": "Test",
        "country_id": "AR",
        "email": "test_user_70452947@testuser.com",
        "phone": {
            "area_code": "01",
            "number": "1111-1111",
            "extension": "",
            "verified": false
        },
        "alternative_phone": {
            "area_code": "",
            "number": "",
            "extension": ""
        },
        "identification": {
            "number": "32659430",
            "type": "DNI"
        },
        "user_type": "real_estate_agency",
        "tags": [
            "real_estate_agency",
            "test_user",
            "user_info_verified",
            "messages_as_seller"
        ],
        "points": 100,
        "site_id": "MLA",
        "permalink": "http://perfil.mercadolibre.com.ar/TESTIIU8DDRW",
        "secure_email": "ttest.1q1x8d@mail.mercadolibre.com"
    },
    "item": {
        "id": "MLA843263657",
        "site_id": "MLA",
        "title": "Item De Prueba - No Ofertar - Test - Domus 2222",
        "subtitle": "",
        "seller_id": 534776711,
        "category_id": "MLA401806",
        "domain_id": "MLA-DEVELOPMENT_APARTMENTS_FOR_SALE",
        "price": 158000,
        "base_price": 158000,
        "original_price": 0,
        "currency_id": "USD",
        "price_conversions": [
            {
                "price": 9889062,
                "currency": "ARS",
                "ratio": 62.589
            }
        ],
        "initial_quantity": 2,
        "available_quantity": 2,
        "sold_quantity": 0,
        "buying_mode": "classified",
        "listing_type_id": "gold_premium",
        "start_time": "2020-03-11T16:22:49Z",
        "stop_time": "2020-06-12T04:00:00Z",
        "condition": "new",
        "permalink": "https://departamento.mercadolibre.com.ar/MLA-843263657-item-de-prueba-no-ofertar-test-domus-2222-_JM",
        "thumbnail": "http://mla-s2-p.mlstatic.com/872895-MLA26491094940_122017-I.jpg",
        "secure_thumbnail": "https://mla-s2-p.mlstatic.com/872895-MLA26491094940_122017-I.jpg",
        "pictures": [
            {
                "id": "872895-MLA26491094940_122017",
                "url": "http://mla-s2-p.mlstatic.com/872895-MLA26491094940_122017-O.jpg",
                "secure_url": "https://mla-s2-p.mlstatic.com/872895-MLA26491094940_122017-O.jpg",
                "size": "500x312",
                "max_size": "1200x750",
                "quality": ""
            },
            {
                "id": "681776-MLA26491106096_122017",
                "url": "http://mla-s2-p.mlstatic.com/681776-MLA26491106096_122017-O.jpg",
                "secure_url": "https://mla-s2-p.mlstatic.com/681776-MLA26491106096_122017-O.jpg",
                "size": "500x236",
                "max_size": "1200x567",
                "quality": ""
            },
            {
                "id": "925912-MLA26491099329_122017",
                "url": "http://mla-s2-p.mlstatic.com/925912-MLA26491099329_122017-O.jpg",
                "secure_url": "https://mla-s2-p.mlstatic.com/925912-MLA26491099329_122017-O.jpg",
                "size": "500x236",
                "max_size": "1200x567",
                "quality": ""
            },
            {
                "id": "614472-MLA26491102287_122017",
                "url": "http://mla-s2-p.mlstatic.com/614472-MLA26491102287_122017-O.jpg",
                "secure_url": "https://mla-s2-p.mlstatic.com/614472-MLA26491102287_122017-O.jpg",
                "size": "500x312",
                "max_size": "1200x750",
                "quality": ""
            },
            {
                "id": "657426-MLA26491106124_122017",
                "url": "http://mla-s2-p.mlstatic.com/657426-MLA26491106124_122017-O.jpg",
                "secure_url": "https://mla-s2-p.mlstatic.com/657426-MLA26491106124_122017-O.jpg",
                "size": "500x312",
                "max_size": "1200x750",
                "quality": ""
            },
            {
                "id": "600555-MLA26491106130_122017",
                "url": "http://mla-s2-p.mlstatic.com/600555-MLA26491106130_122017-O.jpg",
                "secure_url": "https://mla-s2-p.mlstatic.com/600555-MLA26491106130_122017-O.jpg",
                "size": "500x312",
                "max_size": "1200x750",
                "quality": ""
            },
            {
                "id": "919897-MLA26491061564_122017",
                "url": "http://mla-s2-p.mlstatic.com/919897-MLA26491061564_122017-O.jpg",
                "secure_url": "https://mla-s2-p.mlstatic.com/919897-MLA26491061564_122017-O.jpg",
                "size": "500x353",
                "max_size": "1200x848",
                "quality": ""
            },
            {
                "id": "674837-MLA26491070000_122017",
                "url": "http://mla-s2-p.mlstatic.com/674837-MLA26491070000_122017-O.jpg",
                "secure_url": "https://mla-s2-p.mlstatic.com/674837-MLA26491070000_122017-O.jpg",
                "size": "500x353",
                "max_size": "1200x848",
                "quality": ""
            },
            {
                "id": "913036-MLA26491092856_122017",
                "url": "http://mla-s2-p.mlstatic.com/913036-MLA26491092856_122017-O.jpg",
                "secure_url": "https://mla-s2-p.mlstatic.com/913036-MLA26491092856_122017-O.jpg",
                "size": "500x353",
                "max_size": "1200x848",
                "quality": ""
            }
        ],
        "video_id": "",
        "descriptions": [
            {
                "id": "MLA843263657-2561842362"
            }
        ],
        "seller_address": {
            "id": 1091410987,
            "comment": "",
            "address_line": "Test Address 123",
            "zip_code": "1414",
            "city": {
                "id": "",
                "name": "Palermo"
            },
            "state": {
                "id": "AR-C",
                "name": "Capital Federal"
            },
            "country": {
                "id": "AR",
                "name": "Argentina"
            },
            "search_location": {
                "neighborhood": {
                    "id": "TUxBQlBBTDI1MTVa",
                    "name": "Palermo"
                },
                "city": {
                    "id": "TUxBQ0NBUGZlZG1sYQ",
                    "name": "Capital Federal"
                },
                "state": {
                    "id": "TUxBUENBUGw3M2E1",
                    "name": "Capital Federal"
                }
            }
        },
        "seller_contact": {
            "contact": "",
            "other_info": "",
            "area_code": "",
            "phone": "",
            "area_code2": "",
            "phone2": "",
            "email": "",
            "webpage": ""
        },
        "location": {
            "address_line": "Solís 2222",
            "zip_code": "",
            "neighborhood": {
                "id": "TUxBQk9MSTgzODNa",
                "name": "Olivos"
            },
            "city": {
                "id": "TUxBQ1ZJQ2E3MTQz",
                "name": "Vicente López"
            },
            "state": {
                "id": "TUxBUEdSQWU4ZDkz",
                "name": "Bs.as. G.b.a. Norte"
            },
            "country": {
                "id": "AR",
                "name": "Argentina"
            },
            "open_hours": ""
        },
        "attributes": [
            {
                "id": "AVAILABLE_PARKING_SLOTS",
                "name": "Cocheras disponibles",
                "value_id": "",
                "value_name": "82"
            },
            {
                "id": "HAS_LIFT",
                "name": "Ascensor",
                "value_id": "242084",
                "value_name": "No"
            },
            {
                "id": "PARKING_PRICE_FROM",
                "name": "Precio cochera (Desde)",
                "value_id": "",
                "value_name": "30000"
            },
            {
                "id": "HAS_BARBECUE_AREA",
                "name": "Área de parrillas",
                "value_id": "242085",
                "value_name": "Sí"
            },
            {
                "id": "HAS_BUSINESS_CENTER",
                "name": "Business center",
                "value_id": "242084",
                "value_name": "No"
            },
            {
                "id": "HAS_CINEMA_HALL",
                "name": "Área de cine",
                "value_id": "242084",
                "value_name": "No"
            },
            {
                "id": "HAS_COMMON_LAUNDRY",
                "name": "Laundry",
                "value_id": "242084",
                "value_name": "No"
            },
            {
                "id": "HAS_FIRE_SYSTEM",
                "name": "Sistema contra incendio",
                "value_id": "242085",
                "value_name": "Sí"
            },
            {
                "id": "HAS_GUEST_PARKING",
                "name": "Estacionamiento para visitantes",
                "value_id": "242085",
                "value_name": "Sí"
            },
            {
                "id": "HAS_GYM",
                "name": "Gimnasio",
                "value_id": "242085",
                "value_name": "Sí"
            },
            {
                "id": "HAS_JACUZZI",
                "name": "Jacuzzi",
                "value_id": "242084",
                "value_name": "No"
            },
            {
                "id": "HAS_LOBBY",
                "name": "Lobby",
                "value_id": "242085",
                "value_name": "Sí"
            },
            {
                "id": "HAS_MULTIPURPOSE_ROOM",
                "name": "Salón de usos múltiples",
                "value_id": "242085",
                "value_name": "Sí"
            },
            {
                "id": "HAS_PLAYGROUND",
                "name": "Área de juegos infantiles",
                "value_id": "242084",
                "value_name": "No"
            },
            {
                "id": "HAS_SECURITY",
                "name": "Seguridad",
                "value_id": "242085",
                "value_name": "Sí"
            },
            {
                "id": "HAS_STRIP_MALL",
                "name": "Locales comerciales",
                "value_id": "242084",
                "value_name": "No"
            },
            {
                "id": "HAS_SWIMMING_POOL",
                "name": "Pileta",
                "value_id": "242085",
                "value_name": "Sí"
            },
            {
                "id": "HAS_TENNIS_COURT",
                "name": "Cancha de tenis",
                "value_id": "242084",
                "value_name": "No"
            },
            {
                "id": "MAX_BATHROOMS",
                "name": "Cantidad máxima de baños",
                "value_id": "",
                "value_name": "1"
            },
            {
                "id": "MAX_BEDROOMS",
                "name": "Cantidad máxima de dormitorios",
                "value_id": "",
                "value_name": "1"
            },
            {
                "id": "MAX_COVERED_AREA",
                "name": "Cantidad máxima de metros cubiertos",
                "value_id": "",
                "value_name": "51 m²"
            },
            {
                "id": "MAX_ROOMS",
                "name": "Cantidad máxima de ambientes",
                "value_id": "",
                "value_name": "2"
            },
            {
                "id": "MAX_TOTAL_AREA",
                "name": "Cantidad máxima de metros totales",
                "value_id": "",
                "value_name": "57 m²"
            },
            {
                "id": "MIN_BATHROOMS",
                "name": "Cantidad mínima de baños",
                "value_id": "",
                "value_name": "1"
            },
            {
                "id": "MIN_BEDROOMS",
                "name": "Cantidad mínima de dormitorios",
                "value_id": "",
                "value_name": "1"
            },
            {
                "id": "MIN_COVERED_AREA",
                "name": "Cantidad mínima de metros cubiertos",
                "value_id": "",
                "value_name": "40.79 m²"
            },
            {
                "id": "MIN_ROOMS",
                "name": "Cantidad mínima de ambientes",
                "value_id": "",
                "value_name": "1"
            },
            {
                "id": "MIN_TOTAL_AREA",
                "name": "Cantidad mínima de metros totales",
                "value_id": "",
                "value_name": "55.15 m²"
            },
            {
                "id": "SELECTED_PACKAGE",
                "name": "Paquete seleccionado",
                "value_id": "",
                "value_name": "1673515"
            },
            {
                "id": "OPERATION",
                "name": "Operación",
                "value_id": "242075",
                "value_name": "Venta"
            },
            {
                "id": "OPERATION_SUBTYPE",
                "name": "Subtipo de operación",
                "value_id": "245034",
                "value_name": "Emprendimiento"
            },
            {
                "id": "PROPERTY_TYPE",
                "name": "Inmueble",
                "value_id": "242062",
                "value_name": "Departamento"
            },
            {
                "id": "DEVELOPMENT_NAME",
                "name": "Nombre del emprendimiento",
                "value_id": "",
                "value_name": "item de test - no ofertar - DOMUS 2222"
            },
            {
                "id": "POSSESSION_DATE",
                "name": "Fecha de entrega",
                "value_id": "",
                "value_name": "Enero 2019"
            },
            {
                "id": "POSSESSION_STATUS",
                "name": "Entrega",
                "value_id": "242414",
                "value_name": "Preventa"
            },
            {
                "id": "SUITABLE_FOR_MORTGAGE_LOAN",
                "name": "Apto crédito",
                "value_id": "242084",
                "value_name": "No"
            },
            {
                "id": "UNITS",
                "name": "Unidades totales",
                "value_id": "",
                "value_name": "66"
            },
            {
                "id": "HAS_CISTERN",
                "name": "Cisterna",
                "value_id": "242084",
                "value_name": "No"
            },
            {
                "id": "HAS_JOGGING_TRACK",
                "name": "Pista de jogging",
                "value_id": "242084",
                "value_name": "No"
            },
            {
                "id": "ITEM_CONDITION",
                "name": "Condición del ítem",
                "value_id": "2230284",
                "value_name": "Nuevo"
            },
            {
                "id": "PROPERTY_AGE",
                "name": "Antigüedad",
                "value_id": "",
                "value_name": "0 años"
            }
        ],
        "variations": null,
        "listing_source": "",
        "status": "active",
        "tags": [
            "test_item"
        ],
        "parent_item_id": "",
        "automatic_relist": false,
        "date_created": "2020-03-11T16:22:50Z",
        "last_updated": "2020-03-11T16:23:02Z"
    },
    "variation": {
        "id": 52173477243,
        "attribute_combinations": [
            {
                "id": "ROOMS",
                "name": "Ambientes",
                "value_id": "",
                "value_name": "2"
            },
            {
                "id": "FULL_BATHROOMS",
                "name": "Baños",
                "value_id": "",
                "value_name": "1"
            },
            {
                "id": "PARKING_LOTS",
                "name": "Cocheras",
                "value_id": "",
                "value_name": "0"
            },
            {
                "id": "BEDROOMS",
                "name": "Dormitorios",
                "value_id": "",
                "value_name": "1"
            },
            {
                "id": "UNIT_NAME",
                "name": "Nombre de la unidad",
                "value_id": "",
                "value_name": "110"
            },
            {
                "id": "MODEL_NAME",
                "name": "Nombre del modelo",
                "value_id": "",
                "value_name": "2 AMBIENTES"
            },
            {
                "id": "COVERED_AREA",
                "name": "Superficie cubierta",
                "value_id": "",
                "value_name": "51 m²"
            },
            {
                "id": "TOTAL_AREA",
                "name": "Superficie total",
                "value_id": "",
                "value_name": "57 m²"
            }
        ],
        "price": 158000,
        "available_quantity": 1,
        "sold_quantity": 0,
        "picture_ids": [
            "674837-MLA26491070000_122017"
        ],
        "attributes": []
    },
    "disclaimer": "Nota: La información entregada en la presente cotización así como su actualización, es suministrada directamente por la empresa oferente y es de su exclusiva responsabilidad.\nSe deja expresa constancia que esta cotización obtenida a través de Internet es solo a título referencial de las condiciones de venta y no constituye derecho alguno. De esta forma, toda cotización para que sea vinculante y pueda exigirse su cumplimiento del desarrollador inmobiliario en las condiciones que especifique, debe ser obtenida directamente por el interesado en las oficinas del desarrollador inmobiliario, en documento original. Ello, por cuanto la información contenida en esta página está sujeta a actualización.\n",
    "created_at": "2020-03-11T17:01:10Z",
    "is_guest": false
}

Encontre uma cotação por ID do item

Para obter todas as cotações existentes por ID do item, um HTTP GET deve ser enviado usando o seguinte formato:

Chamada:

curl -X GET -H 'Authorization: Bearer $ACCESS_TOKEN' https://api.mercadolibre.com/quotations/items_ids?query=$ITEMID&caller.type=seller

Example:

curl -X GET -H 'Authorization: Bearer $ACCESS_TOKEN' https://api.mercadolibre.com/quotations/items_ids?query=MLA843263657&caller.type=seller

Resposta:

{
    "paging": {
        "total": 1,
        "offset": 0,
        "limit": 10
    },
    "results": [
        "MLA843263657"
    ]
}

A consulta aceita vários IDs de itens. Por exemplo:

curl -X GET -H 'Authorization: Bearer $ACCESS_TOKEN' https://api.mercadolibre.com/quotations/items_ids?query=itemId1,Itemid2,Itemid3&caller.type=seller


Buscar cotações de um seller

Para buscar, usar um HTTP GET no seguinte formato:

Chamada:

curl -X GET -H 'Authorization: Bearer $ACCESS_TOKEN' https://api.mercadolibre.com/quotations/report?seller.id=$SELLER.ID

Exemplo:

curl -X GET -H 'Authorization: Bearer $ACCESS_TOKEN' https://api.mercadolibre.com/quotations/report?seller.id=534776711

Resposta:

{
    "seller_id": 534776711,
    "total": 1,
    "date_from": "0001-01-01T00:00:00Z",
    "date_to": "2020-03-11T17:48:49Z",
    "results": [
        {
            "date": "2020-03-11T00:00:00Z",
            "total": 1
        }
    ]
}