Documentación Mercado Libre

Descubre toda la información que debes conocer sobre las APIs de Mercado Libre.
circulos azuis em degrade

Documentación

Última actualización 31/08/2023

Desarrollos inmobiliarios

Un emprendimiento (Argentina y Uruguay), desarrollo inmobiliario (México) o proyecto (Chile) es un tipo de publicación de inmueble dentro de Mercado Libre que le permite al vendedor mostrar una unidad a desarrollar. Esta unidad puede tener una o varias opciones, conocidas como variaciones. Cada variación detalla una posible unidad a ser construida, con sus atributos, planos, etc.

Para Chile, utilizamos el flujo de Cotizaciones:


Gestión de Contactos (aplica a Mercado Libre Argentina, Uruguay y México)

Las consultas recibidas se gestionan igual que otros inmuebles y puedes ver la documentación correspondiente. Existen varias formas de contactar:

  • El contacto superior a la derecha de la galería de imágenes.
  • El contacto en cada uno de los modelos del desarrollo.

En todos los casos, se envía un correo al seller/inmobiliaria con la siguiente información:

Hola Inmobiliaria de prueba, 

Te hicieron una pregunta en Portal De Test Ok Listing: 

Hola [Seller/Inmobiliaria], Estoy interesado en Desarrollo Portal De Test Ok Listing, por favor comunícate conmigo. ¡Gracias!

Estos son los datos del interesado: 

Nombre: Test Test 

E-mail: test_user_4148209@testuser.com 

Teléfono: 01-1111-1111

Este correo será acompañado de una notificación para el seller o inmobiliaria en la cuenta del usuario. El ícono de notificación recibida en su cuenta se verá así:


La notificación:


El formulario de respuesta con la información relacionada se visualizará de la siguiente manera:


Eventualmente, permitiremos que los usuarios se contacten mediante una nueva funcionalidad, sin registrarse. El formulario será:

En este caso, el correo recibido por el seller o inmobiliaria sería:


Hola Inmuebles Ricardo, 

Te hicieron una pregunta en Portal De Test Ok Listing: 

Esa es una buena pregunta! 

Estos son los datos del interesado: 

Nombre: Nombre Apellido 

E-mail: testaaa@test.com 

Teléfono: [Responder]


Es importante recordar que el teléfono puede no aparecer porque no es un dato obligatorio del formulario anteriormente mostrado, es decir, el usuario puede decidir si enviarlo o no.


Paquetes

Para el vendedor, es necesario tener un paquete del tipo desarrollo.

Nota:
Para realizar pruebas, deberás enviar el usuario de test al canal de soporte para que sea activado como real state y asignar un paquete de desarrollos. Para cada ticket, es posible asignar solo una publicación a la vez.


Categorías

El integrador debe buscar la categoría correcta dentro del árbol de categorías:

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

Una categoría hija debe ser enviada. En el ejemplo siguiente, la categoría hija es MLA401805.

Ejemplo:

Inmuebles:

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

Emprendimientos Inmobiliarios:

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


Fotos

Las fotos de las variaciones tienen que ser generadas mediante el recurso pictures, como figura en el ejemplo, es decir, son enviados en el mismo POST, en el array de pictures. Las fotos donde el ID no está en las variaciones, no se muestra en la “home” del desarrollo. Pero las que tienen el ID en las variaciones, se ven en la descripción y cotización.
La cantidad máxima de imágenes que se debe enviar es definida por la categoría en los campos "max_pictures_per_item" y "max_pictures_per_item_var".

Ejemplo:

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

Respuesta:

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


Publica un desarrollo inmobiliario

Un emprendimiento tiene que tener como mínimo una variación y todos los atributos y combinaciones de variaciones, se pueden obtener desde el recurso /attributes de la categoría:

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

Al consultar la llamada, si el atributo cuenta con el tag allow variations, nos indicará que es un campo utilizable para ellas. Ejemplo, baños, cuenta con el tag como se muestra a continuación:

…
{
  "id": "BEDROOMS",
  "name": "Dormitorios",
  "value_type": "number",
  "value_max_length": 18,
  "tags": - [
     "catalog_listing_required",
     "allow_variations",
     "required"
  ], 
  "hierarchy": "ITEM",
  "relevance": 1
}
…

Una publicación contiene atributos a nivel ítem, que son las características propias del emprendimiento, representadas dentro de “attributes”. El título del desarrollo será un atributo: DEVELOPMENT_NAME. Cada variación dentro de “variations” representa a la unidad en sí. Entonces, una variación contiene “attribute_combinations” que sería la PK de la unidad. No pueden existir dos variaciones con la misma combinación de valores en los atributos utilizados en attribute_combinations. Por ejemplo, el valor “UNIT_NAME” suele ser el diferencial. A su vez, cada variación tiene sus propios atributos que dependen del emprendimiento en general.

Llamada:

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

Ejemplo:

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

Respuesta:

{
    "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": []
}

Un emprendimiento inmobiliario no puede tener en sus variations una moneda distinta al price del emprendimiento.

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

Y en cada variación solo debe mencionar el "precio" sin mencionar nuevamente la moneda.

 


Cotizaciones

Una cotización ocurre cuando un posible comprador realiza una consulta en un anuncio del tipo "desarollo inmobiliario". Él elige la planta y la unidad, y partir de ahí, puede saber el precio. Una cotización es un documento que contiene información del vendedor, del ítem y del comprador en el momento que es creada. Cuando el usuario solicita una cotización, la información del ítem es congelada y se mantiene para garantizar el precio del momento en que la cotización fue realizada. Para algunos métodos el integrador debe enviar la variable “caller.type” para identificar quién es el generador de la acción. Puede ser un vendedor o un usuario. Generalmente. para las aplicaciones de lanzamientos será el el vendedor.



¿Cómo se notifica una oferta a su app?

La creación de una oferta es un evento que se produce del lado de Mercado Libre; por lo tanto, deberás registrarte en nuestro feed de quotations para saber en tiempo real cuando ocurre este evento.
Ve a nuestro Gestor de aplicaciones y modifica la Configuración de notificación de su aplicación. Podrás obtener más información sobre la creación y configuración de una aplicación nueva en este enlace.
Debes seleccionar un Callback URL: configure la URL pública del dominio donde deseas recibir todas las notificaciones de Mercado Libre.

Nota:
Si deseas habilitar las notificaciones de ofertas, selecciona la opción “quotations”, sección “Topics”, en el gestor de aplicaciones.
Esta configuración permite que interactúes con las notificaciones de Mercado Libre. Todas las ofertas realizadas por los interesados en los anuncios de emprendimientos serán notificadas en su callback URL.


Eliminar una cotización

Para eliminar una cotización utilizando la API de Mercado Libre se debe enviar un HTTP PUT con el siguiente formato:

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


Buscar una cotización

Para buscar una cotización utilizando la API de Mercado Libre deberás hacer un HTTP GET utilizando el siguiente formato:

Llamada:

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

Ejemplo:

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

Respuesta:

{
    "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
}


Buscar una cotización por item ID

Para obtener todas las cotizaciones existentes por item ID, se deberá enviar un HTTP GET usando el siguiente formato:

Llamada:

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

Ejemplo:

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

Respuesta:

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

La consulta acepta varios items IDs. Por ejemplo:

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


Consultar un reporte de cotización por vendedor

Para consultar este número deberás realizar un GET con el siguiente formato:

Llamada:

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

Ejemplo:

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

Respuesta:

{
    "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
        }
    ]
}