Categories & Listings
Resource | Description | Example |
---|---|---|
/sites | Retrieves information about the sites where MercadoLibre runs. | GET
Go back
X
Get all sites.curl -X GET https://api.mercadolibre.com/sites Response[ { "default_currency_id": "NIO", "id": "MNI", "name": "Nicaragua" }, { "default_currency_id": "GTQ", "id": "MGT", "name": "Guatemala" }, { "default_currency_id": "BOB", "id": "MBO", "name": "Bolivia" }, { "default_currency_id": "PEN", "id": "MPE", "name": "Perú" }, { "default_currency_id": "CLP", "id": "MLC", "name": "Chile" }, { "default_currency_id": "BRL", "id": "MLB", "name": "Brasil" }, { "default_currency_id": "CUP", "id": "MCU", "name": "Cuba" }, { "default_currency_id": "USD", "id": "MEC", "name": "Ecuador" }, { "default_currency_id": "PYG", "id": "MPY", "name": "Paraguay" }, { "default_currency_id": "USD", "id": "MSV", "name": "El Salvador" }, { "default_currency_id": "ARS", "id": "MLA", "name": "Argentina" }, { "default_currency_id": "VES", "id": "MLV", "name": "Venezuela" }, { "default_currency_id": "COP", "id": "MCO", "name": "Colombia" }, { "default_currency_id": "CRC", "id": "MCR", "name": "Costa Rica" }, { "default_currency_id": "PAB", "id": "MPA", "name": "Panamá" }, { "default_currency_id": "MXN", "id": "MLM", "name": "Mexico" }, { "default_currency_id": "DOP", "id": "MRD", "name": "Dominicana" }, { "default_currency_id": "UYU", "id": "MLU", "name": "Uruguay" }, { "default_currency_id": "HNL", "id": "MHN", "name": "Honduras" }, { "default_currency_id": "EUR", "id": "MPT", "name": "Portugal" } ]Learn more. |
/site_domains/{Site_domain_url} | Returns information about listing types. | GET
Go back
X
Get listing types by site.curl -X GET https://api.mercadolibre.com/sites/MLA/listing_types Response"[ { "site_id": "MLA", "id": "gold_pro", "name": "Oro Premium Full" }, { "site_id": "MLA", "id": "gold_premium", "name": "Oro Premium" }, { "site_id": "MLA", "id": "gold_special", "name": "Oro Profesional" }, { "site_id": "MLA", "id": "gold", "name": "Oro" }, { "site_id": "MLA", "id": "silver", "name": "Plata" }, { "site_id": "MLA", "id": "bronze", "name": "Bronce" }, { "site_id": "MLA", "id": "free", "name": "Gratuita" } ]"Learn more. |
/sites/{Site_id}/listing_types | Returns different exposure levels associated with all listing types in Mercado Libre. | GET
Go back
X
Get listing exposures by site.curl -X GET https://api.mercadolibre.com/sites/MLA/listing_exposures Response"[ { "id": "lowest", "name": "Última", "home_page": false, "category_home_page": false, "advertising_on_listing_page": true, "priority_in_search": 4 }, { "id": "low", "name": "Inferior", "home_page": false, "category_home_page": false, "advertising_on_listing_page": false, "priority_in_search": 3 }, { "id": "mid", "name": "Media", "home_page": false, "category_home_page": true, "advertising_on_listing_page": false, "priority_in_search": 2 }, { "id": "high", "name": "Alta", "home_page": false, "category_home_page": true, "advertising_on_listing_page": false, "priority_in_search": 1 }, { "id": "highest", "name": "Superior", "home_page": true, "category_home_page": true, "advertising_on_listing_page": false, "priority_in_search": 0 } ]"Learn more. |
/sites/{Site_id}/listing_prices?price={Price} | Returns the listing price for selling and buying in Mercado Libre. | GET
Go back
X
Get listing prices.curl -X GET https://api.mercadolibre.com/sites/MLA/listing_prices?price=1 Response"[ { "listing_type_id": "gold_pro", "listing_type_name": "Oro Premium Full", "listing_exposure": "highest", "requires_picture": true, "currency_id": "ARS", "listing_fee_amount": 0, "sale_fee_amount": 0.23, "free_relist": false, "stop_time": "2016-04-25T14:13:48.344-04:00" }, { "listing_type_id": "gold_premium", "listing_type_name": "Oro Premium", "listing_exposure": "highest", "requires_picture": true, "currency_id": "ARS", "listing_fee_amount": 225, "sale_fee_amount": 0.08, "free_relist": false, "stop_time": "2016-04-25T14:13:48.327-04:00" }, { "listing_type_id": "gold_special", "listing_type_name": "Oro Profesional", "listing_exposure": "highest", "requires_picture": true, "currency_id": "ARS", "listing_fee_amount": 0, "sale_fee_amount": 0.1, "free_relist": false, "stop_time": "2016-04-25T14:13:48.329-04:00" }, { "listing_type_id": "gold", "listing_type_name": "Oro", "listing_exposure": "high", "requires_picture": true, "currency_id": "ARS", "listing_fee_amount": 45, "sale_fee_amount": 0.08, "free_relist": false, "stop_time": "2016-04-25T14:13:48.342-04:00" }, { "listing_type_id": "silver", "listing_type_name": "Plata", "listing_exposure": "mid", "requires_picture": false, "currency_id": "ARS", "listing_fee_amount": 5, "sale_fee_amount": 0.08, "free_relist": false, "stop_time": "2016-04-25T14:13:48.335-04:00" }, { "listing_type_id": "bronze", "listing_type_name": "Bronce", "listing_exposure": "low", "requires_picture": false, "currency_id": "ARS", "listing_fee_amount": 0, "sale_fee_amount": 0.11, "free_relist": false, "stop_time": "2016-04-25T14:13:48.337-04:00" }, { "listing_type_id": "free", "listing_type_name": "Gratuita", "listing_exposure": "lowest", "requires_picture": false, "currency_id": "ARS", "listing_fee_amount": 0, "sale_fee_amount": 0, "free_relist": false, "stop_time": "2016-04-25T14:13:48.322-04:00" } ]"Learn more. |
/sites/{Site_id}/categories | Returns available categories in the site. | GET
Go back
X
Get the category tree by site.curl -X GET https://api.mercadolibre.com/sites/MLA/categories. Response"[ { "id": "MLA5725", "name": "Accesorios para Vehículos" }, { "id": "MLA1071", "name": "Animales y Mascotas" }, { "id": "MLA1367", "name": "Antigüedades" }, { "id": "MLA1368", "name": "Arte y Artesanías" }, { "id": "MLA1743", "name": "Autos, Motos y Otros" }, { "id": "MLA1384", "name": "Bebés" }, { "id": "MLA1051", "name": "Celulares y Teléfonos" }, { "id": "MLA1798", "name": "Coleccionables y Hobbies" }, { "id": "MLA1648", "name": "Computación" }, { "id": "MLA1144", "name": "Consolas y Videojuegos" }, { "id": "MLA1039", "name": "Cámaras y Accesorios" }, { "id": "MLA1403", "name": "Delicatessen y Vinos" }, { "id": "MLA1276", "name": "Deportes y Fitness" }, { "id": "MLA5726", "name": "Electrodomésticos y Aires Ac." }, { "id": "MLA1000", "name": "Electrónica, Audio y Video" }, { "id": "MLA2547", "name": "Entradas para Eventos" }, { "id": "MLA1574", "name": "Hogar, Muebles y Jardín" }, { "id": "MLA1499", "name": "Industrias y Oficinas" }, { "id": "MLA1459", "name": "Inmuebles" }, { "id": "MLA1182", "name": "Instrumentos Musicales" }, { "id": "MLA3937", "name": "Joyas y Relojes" }, { "id": "MLA1132", "name": "Juegos y Juguetes" }, { "id": "MLA3025", "name": "Libros, Revistas y Comics" }, { "id": "MLA1168", "name": "Música, Películas y Series" }, { "id": "MLA1953", "name": "Otras categorías" }, { "id": "MLA1430", "name": "Ropa y Accesorios" }, { "id": "MLA1246", "name": "Salud y Belleza" }, { "id": "MLA1540", "name": "Servicios" } ]"Learn more. |
/categories/{Category_id} | Returns information about a category. | GET
Go back
X
Get category details.curl -X GET https://api.mercadolibre.com/categories/MLA5725 Response"{ "id": "MLA5725", "name": "Accesorios para Vehículos", "picture": "http://resources.mlstatic.com/category/images/6fc20d84-2ce6-44ee-8e7e-e5479a78eab0.png", "permalink": "http://home.mercadolibre.com.ar/vehiculos-accesorios/", "total_items_in_this_category": 723617, "path_from_root": [ { "id": "MLA5725", "name": "Accesorios para Vehículos" } ], "children_categories": [ { "id": "MLA4711", "name": "Acc. para Motos y Cuatriciclos", "total_items_in_this_category": 133686 }, { "id": "MLA6070", "name": "Accesorios Náuticos", "total_items_in_this_category": 3822 }, { "id": "MLA6520", "name": "Accesorios de Auto y Camioneta", "total_items_in_this_category": 81712 }, { "id": "MLA86360", "name": "Accesorios para Camiones", "total_items_in_this_category": 4154 }, { "id": "MLA3381", "name": "Audio", "total_items_in_this_category": 18757 }, { "id": "MLA4610", "name": "GNC", "total_items_in_this_category": 1347 }, { "id": "MLA2227", "name": "Herramientas", "total_items_in_this_category": 5950 }, { "id": "MLA86838", "name": "Limpieza de Vehículos", "total_items_in_this_category": 6743 }, { "id": "MLA8531", "name": "Navegadores GPS para Vehículos", "total_items_in_this_category": 3905 }, { "id": "MLA6537", "name": "Neumáticos, Llantas y Tazas", "total_items_in_this_category": 28724 }, { "id": "MLA6177", "name": "Otros", "total_items_in_this_category": 12850 }, { "id": "MLA1747", "name": "Repuestos Autos y Camionetas", "total_items_in_this_category": 392276 }, { "id": "MLA86080", "name": "Seguridad Vehícular", "total_items_in_this_category": 12162 }, { "id": "MLA377674", "name": "Service Programado", "total_items_in_this_category": 634 }, { "id": "MLA4589", "name": "Tuning", "total_items_in_this_category": 16895 } ], "attribute_types": "none", "settings": { "adult_content": false, "buying_allowed": true, "buying_modes": [ "buy_it_now", "auction" ], "coverage_areas": "not_allowed", "currencies": [ "ARS" ], "fragile": false, "immediate_payment": "optional", "item_conditions": [ "not_specified", "used", "new" ], "items_reviews_allowed": false, "max_description_length": 50000, "max_pictures_per_item": 12, "max_sub_title_length": 70, "max_title_length": 60, "price": "required", "restrictions": [ ], "rounded_address": false, "seller_contact": "not_allowed", "shipping_modes": [ "custom", "not_specified" ], "shipping_options": [ "custom", "carrier" ], "shipping_profile": "optional", "show_contact_information": false, "simple_shipping": "optional", "stock": "required", "sub_vertical": null, "tags": [ ], "vertical": null, "vip_subdomain": "articulo", "mirror_category": null, "listing_allowed": false, "maximum_price": null, "minimum_price": null }, "meta_categ_id": null, "attributable": false }"Learn more. |
/categories/{Category_id}/attributes | Displays attributes and rules over them in order to describe the items that are stored in each category. | GET
Go back
X
Get category attributes.curl -X GET https://api.mercadolibre.com/categories/MLA109291/attributes Response"[ { "id": "Season", "name": "Season", "value_type": "list", "tags": { "fixed": true }, "values": [ { "id": "Season-Spring-Summer", "name": "Spring-Summer" } ], "attribute_group_id": "FIND", "attribute_group_name": "Ficha técnica" }, { "id": "GENDER", "name": "Género", "value_type": "list", "tags": { }, "values": [ { "id": "male", "name": "Hombre" }, { "id": "female", "name": "Mujer" }, { "id": "girls", "name": "Niñas" }, { "id": "boys", "name": "Niños" } ], "attribute_group_id": "DFLT", "attribute_group_name": "Otros" }, { "id": "83000", "name": "Color Primario", "type": "color", "value_type": "list", "tags": { "allow_variations": true, "required": true }, "values": [ { "id": "91993", "name": "Rojo", "metadata": { "rgb": "#FF0000" } }, { "id": "91994", "name": "Rosa", "metadata": { "rgb": "#F4CCCC" } }, { "id": "91995", "name": "Terracota", "metadata": { "rgb": "#E06666" } }, { "id": "91996", "name": "Bordó", "metadata": { "rgb": "#990000" } }, { "id": "91997", "name": "Naranja", "metadata": { "rgb": "#FF9900" } }, { "id": "91998", "name": "Beige", "metadata": { "rgb": "#FCE5CD" } }, { "id": "91999", "name": "Piel", "metadata": { "rgb": "#F6B26B" } }, { "id": "92000", "name": "Marrón", "metadata": { "rgb": "#B45F06" } }, { "id": "92001", "name": "Amarillo", "metadata": { "rgb": "#FFFF00" } }, { "id": "92002", "name": "Crema", "metadata": { "rgb": "#FFF2CC" } }, { "id": "92003", "name": "Ocre", "metadata": { "rgb": "#FFD966" } }, { "id": "92004", "name": "Dorado", "metadata": { "rgb": "#BF9000" } }, { "id": "92005", "name": "Verde", "metadata": { "rgb": "#0C9800" } }, { "id": "92006", "name": "Verde claro", "metadata": { "rgb": "#D9EAD3" } }, { "id": "92007", "name": "Esmeralda", "metadata": { "rgb": "#93C47D" } }, { "id": "92008", "name": "Verde oscuro", "metadata": { "rgb": "#38761D" } }, { "id": "92009", "name": "Agua", "metadata": { "rgb": "#83DDFF" } }, { "id": "92010", "name": "Azul cielo", "metadata": { "rgb": "#D0E0E3" } }, { "id": "92011", "name": "Azul marino", "metadata": { "rgb": "#76A5AF" } }, { "id": "92012", "name": "Azul petróleo", "metadata": { "rgb": "#134F5C" } }, { "id": "92013", "name": "Azul", "metadata": { "rgb": "#1717FF" } }, { "id": "92014", "name": "Celeste", "metadata": { "rgb": "#CFE2F3" } }, { "id": "92015", "name": "Azul acero", "metadata": { "rgb": "#6FA8DC" } }, { "id": "92016", "name": "Azul oscuro", "metadata": { "rgb": "#0B5394" } }, { "id": "92017", "name": "Violeta oscuro", "metadata": { "rgb": "#7600FF" } }, { "id": "92018", "name": "Lavanda", "metadata": { "rgb": "#D9D2E9" } }, { "id": "92019", "name": "Lila", "metadata": { "rgb": "#8E7CC3" } }, { "id": "92020", "name": "Azul marino", "metadata": { "rgb": "#76A5AF" } }, { "id": "92021", "name": "Fucsia", "metadata": { "rgb": "#E828FF" } }, { "id": "92022", "name": "Salmón", "metadata": { "rgb": "#EAD1DC" } }, { "id": "92023", "name": "Fucsia oscuro", "metadata": { "rgb": "#C27BA0" } }, { "id": "92024", "name": "Púrpura", "metadata": { "rgb": "#741B47" } }, { "id": "92025", "name": "Negro", "metadata": { "rgb": "#000000" } }, { "id": "92026", "name": "Plateado", "metadata": { "rgb": "#CCCCCC" } }, { "id": "92027", "name": "Gris", "metadata": { "rgb": "#666666" } }, { "id": "92028", "name": "Blanco", "metadata": { "rgb": "#FFFFFF" } } ], "attribute_group_id": "DFLT", "attribute_group_name": "Otros" }, { "id": "73001", "name": "Color Secundario", "type": "color", "value_type": "list", "tags": { "allow_variations": true }, "values": [ { "id": "82026", "name": "Rojo", "metadata": { "rgb": "#FF0000" } }, { "id": "82027", "name": "Rosa", "metadata": { "rgb": "#F4CCCC" } }, { "id": "82028", "name": "Terracota", "metadata": { "rgb": "#E06666" } }, { "id": "82029", "name": "Bordó", "metadata": { "rgb": "#990000" } }, { "id": "82030", "name": "Naranja", "metadata": { "rgb": "#FF9900" } }, { "id": "82031", "name": "Beige", "metadata": { "rgb": "#FCE5CD" } }, { "id": "82032", "name": "Piel", "metadata": { "rgb": "#F6B26B" } }, { "id": "82033", "name": "Marrón", "metadata": { "rgb": "#B45F06" } }, { "id": "82034", "name": "Amarillo", "metadata": { "rgb": "#FFFF00" } }, { "id": "82035", "name": "Crema", "metadata": { "rgb": "#FFF2CC" } }, { "id": "82036", "name": "Ocre", "metadata": { "rgb": "#FFD966" } }, { "id": "82037", "name": "Dorado", "metadata": { "rgb": "#BF9000" } }, { "id": "82038", "name": "Verde", "metadata": { "rgb": "#0C9800" } }, { "id": "82039", "name": "Verde claro", "metadata": { "rgb": "#D9EAD3" } }, { "id": "82040", "name": "Esmeralda", "metadata": { "rgb": "#93C47D" } }, { "id": "82041", "name": "Verde oscuro", "metadata": { "rgb": "#38761D" } }, { "id": "82042", "name": "Agua", "metadata": { "rgb": "#83DDFF" } }, { "id": "82043", "name": "Azul cielo", "metadata": { "rgb": "#D0E0E3" } }, { "id": "82044", "name": "Azul marino", "metadata": { "rgb": "#76A5AF" } }, { "id": "82045", "name": "Azul petróleo", "metadata": { "rgb": "#134F5C" } }, { "id": "82046", "name": "Azul", "metadata": { "rgb": "#1717FF" } }, { "id": "82047", "name": "Celeste", "metadata": { "rgb": "#CFE2F3" } }, { "id": "82048", "name": "Azul acero", "metadata": { "rgb": "#6FA8DC" } }, { "id": "82049", "name": "Azul oscuro", "metadata": { "rgb": "#0B5394" } }, { "id": "82050", "name": "Violeta oscuro", "metadata": { "rgb": "#7600FF" } }, { "id": "82051", "name": "Lavanda", "metadata": { "rgb": "#D9D2E9" } }, { "id": "82052", "name": "Lila", "metadata": { "rgb": "#8E7CC3" } }, { "id": "82053", "name": "Azul marino", "metadata": { "rgb": "#351C75" } }, { "id": "82054", "name": "Fucsia", "metadata": { "rgb": "#E828FF" } }, { "id": "82055", "name": "Salmón", "metadata": { "rgb": "#EAD1DC" } }, { "id": "82056", "name": "Fucsia oscuro", "metadata": { "rgb": "#C27BA0" } }, { "id": "82057", "name": "Púrpura", "metadata": { "rgb": "#741B47" } }, { "id": "82058", "name": "Negro", "metadata": { "rgb": "#000000" } }, { "id": "82059", "name": "Plateado", "metadata": { "rgb": "#CCCCCC" } }, { "id": "82060", "name": "Gris", "metadata": { "rgb": "#666666" } }, { "id": "82061", "name": "Blanco", "metadata": { "rgb": "#FFFFFF" } } ], "attribute_group_id": "DFLT", "attribute_group_name": "Otros" } ]"Learn more. |
/sites/{Site_id}/category_predictor/predict | Category predictor. Retrieves the most accurate category to list your item basing on it's title. | GET
Go back
X
Predict categorycurl -X GET https://api.mercadolibre.com/sites/MLB/category_predictor/predict?title=Ipod%20Touch%20Apple%2016gb%205%20Gera%C3%A7%C3%A3o Response{ "id": "MLB163702", "name": "16 GB", "path_from_root": [ { "id": "MLB1000", "name": "Eletrônicos, Áudio e Vídeo", "prediction_probability": 0.6775058126194443 }, { "id": "MLB9622", "name": "iPod", "prediction_probability": 0.6359005224599167 }, { "id": "MLB12584", "name": "Reprodutores", "prediction_probability": 0.6214052677358551 }, { "id": "MLB32613", "name": "iPod touch", "prediction_probability": 0.30864987493712115 }, { "id": "MLB163701", "name": "5 Geração", "prediction_probability": 0.30864987493712115 }, { "id": "MLB163702", "name": "16 GB", "prediction_probability": 0.30864987493712115 } ], "prediction_probability": 0.30864987493712115, "shipping_modes": [ "not_specified", "custom", "me1", "me2" ] }Learn more. |
/categories/{Category_id}/classifieds_promotion_packs | Retrieves classified promotion packs by category. | GET
Go back
X
Get classified promotion packs by categorycurl -X GET https://api.mercadolibre.com/categories/MLA1743/classifieds_promotion_packs Response"[ { "id": "MPAB", "category_id": "MLA1743", "brand": "MLMOTORS", "description": "Paquete 15 Básico", "price": 677, "package_type": "rotary", "package_content": "publications", "duration": 30, "status": "active", "charge_type_id": "CCAA", "max_upgrades": 0, "quota_type": "reusable", "listing_details": [ { "listing_type_id": "silver", "available_listings": 15 } ] }, { "id": "MPAE", "category_id": "MLA1743", "brand": "MLMOTORS", "description": "Paquete 15 Especial", "price": 967, "package_type": "rotary", "package_content": "publications", "duration": 30, "status": "active", "charge_type_id": "CCAS", "max_upgrades": 0, "quota_type": "reusable", "listing_details": [ { "listing_type_id": "silver", "available_listings": 10 }, { "listing_type_id": "gold", "available_listings": 5 } ] }, { "id": "MPAP", "category_id": "MLA1743", "brand": "MLMOTORS", "description": "Paquete 15 Premium", "price": 1357, "package_type": "rotary", "package_content": "publications", "duration": 30, "status": "active", "charge_type_id": "CCAR", "max_upgrades": 0, "quota_type": "reusable", "listing_details": [ { "listing_type_id": "silver", "available_listings": 8 }, { "listing_type_id": "gold", "available_listings": 6 }, { "listing_type_id": "gold_premium", "available_listings": 1 } ] }, { "id": "MPBB", "category_id": "MLA1743", "brand": "MLMOTORS", "description": "Paquete 30 Básico", "price": 1027, "package_type": "rotary", "package_content": "publications", "duration": 30, "status": "active", "charge_type_id": "CCBA", "max_upgrades": 0, "quota_type": "reusable", "listing_details": [ { "listing_type_id": "silver", "available_listings": 30 } ] }, { "id": "MPBE", "category_id": "MLA1743", "brand": "MLMOTORS", "description": "Paquete 30 Especial", "price": 1227, "package_type": "rotary", "package_content": "publications", "duration": 30, "status": "active", "charge_type_id": "CCBS", "max_upgrades": 0, "quota_type": "reusable", "listing_details": [ { "listing_type_id": "gold", "available_listings": 10 }, { "listing_type_id": "silver", "available_listings": 20 } ] }, { "id": "MPBP", "category_id": "MLA1743", "brand": "MLMOTORS", "description": "Paquete 30 Premium", "price": 1697, "package_type": "rotary", "package_content": "publications", "duration": 30, "status": "active", "charge_type_id": "CCBR", "max_upgrades": 0, "quota_type": "reusable", "listing_details": [ { "listing_type_id": "silver", "available_listings": 16 }, { "listing_type_id": "gold", "available_listings": 12 }, { "listing_type_id": "gold_premium", "available_listings": 2 } ] }, { "id": "MPCB", "category_id": "MLA1743", "brand": "MLMOTORS", "description": "Paquete 300 Básico", "price": 1827, "package_type": "rotary", "package_content": "publications", "duration": 30, "status": "active", "charge_type_id": "CCEA", "max_upgrades": 0, "quota_type": "reusable", "listing_details": [ { "listing_type_id": "silver", "available_listings": 300 } ] }, { "id": "MPCE2", "category_id": "MLA1743", "brand": "MLMOTORS", "description": "Paquete 300 Especial", "price": 3427, "package_type": "rotary", "package_content": "publications", "duration": 30, "status": "active", "charge_type_id": "CCES", "max_upgrades": 300, "quota_type": "reusable", "listing_details": [ { "listing_type_id": "silver", "available_listings": 210 }, { "listing_type_id": "gold", "available_listings": 90 } ] }, { "id": "MPCP2", "category_id": "MLA1743", "brand": "MLMOTORS", "description": "Paquete 300 Premium", "price": 6877, "package_type": "rotary", "package_content": "publications", "duration": 30, "status": "active", "charge_type_id": "CCER", "max_upgrades": 300, "quota_type": "reusable", "listing_details": [ { "listing_type_id": "gold_premium", "available_listings": 25 }, { "listing_type_id": "gold", "available_listings": 95 }, { "listing_type_id": "silver", "available_listings": 180 } ] }, { "id": "MPDB", "category_id": "MLA1743", "brand": "MLMOTORS", "description": "Paquete 60 Básico", "price": 1187, "package_type": "rotary", "package_content": "publications", "duration": 30, "status": "active", "charge_type_id": "CCCA", "max_upgrades": 0, "quota_type": "reusable", "listing_details": [ { "listing_type_id": "silver", "available_listings": 60 } ] }, { "id": "MPDE", "category_id": "MLA1743", "brand": "MLMOTORS", "description": "Paquete 60 Especial", "price": 1457, "package_type": "rotary", "package_content": "publications", "duration": 30, "status": "active", "charge_type_id": "CCCS", "max_upgrades": 0, "quota_type": "reusable", "listing_details": [ { "listing_type_id": "gold", "available_listings": 20 }, { "listing_type_id": "silver", "available_listings": 40 } ] }, { "id": "MPDP", "category_id": "MLA1743", "brand": "MLMOTORS", "description": "Paquete 60 Premium", "price": 2377, "package_type": "rotary", "package_content": "publications", "duration": 30, "status": "active", "charge_type_id": "CCCR", "max_upgrades": 0, "quota_type": "reusable", "listing_details": [ { "listing_type_id": "silver", "available_listings": 32 }, { "listing_type_id": "gold_premium", "available_listings": 4 }, { "listing_type_id": "gold", "available_listings": 24 } ] }, { "id": "MPEB", "category_id": "MLA1743", "brand": "MLMOTORS", "description": "Paquete 100 Básico", "price": 1357, "package_type": "rotary", "package_content": "publications", "duration": 30, "status": "active", "charge_type_id": "CCDA", "max_upgrades": 0, "quota_type": "reusable", "listing_details": [ { "listing_type_id": "silver", "available_listings": 100 } ] }, { "id": "MPEE2", "category_id": "MLA1743", "brand": "MLMOTORS", "description": "Paquete 100 Especial", "price": 1997, "package_type": "rotary", "package_content": "publications", "duration": 30, "status": "active", "charge_type_id": "CCDS", "max_upgrades": 300, "quota_type": "reusable", "listing_details": [ { "listing_type_id": "silver", "available_listings": 70 }, { "listing_type_id": "gold", "available_listings": 30 } ] }, { "id": "MPEP2", "category_id": "MLA1743", "brand": "MLMOTORS", "description": "Paquete 100 Premium", "price": 3377, "package_type": "rotary", "package_content": "publications", "duration": 30, "status": "active", "charge_type_id": "CCDR", "max_upgrades": 300, "quota_type": "reusable", "listing_details": [ { "listing_type_id": "gold_premium", "available_listings": 10 }, { "listing_type_id": "gold", "available_listings": 30 }, { "listing_type_id": "silver", "available_listings": 60 } ] } ]"Learn more. |
/sites/{site_id}/listing_types/{listing_type_id} | Retrieves the configuration for a specific listing type. | GET
Go back
X
Get listing type details.curl -X GET https://api.mercadolibre.com/sites/MLA/listing_types/gold_pro Response{ "id": "gold_pro", "not_available_in_categories": [ "MLA1743", "MLA1459", "MLA1540" ], "configuration": { "name": "Premium", "listing_exposure": "highest", "requires_picture": false, "max_stock_per_item": 99999, "deduction_profile_id": null, "differential_pricing_id": 33352179, "duration_days": { "buy_it_now": 7300, "auction": 7, "classified": null }, "immediate_payment": { "buy_it_now": false, "auction": false, "classified": false }, "mercado_pago": "mandatory", "listing_fee_criteria": { "min_fee_amount": 0, "max_fee_amount": 0, "percentage_of_fee_amount": 0, "currency": "ARS" }, "sale_fee_criteria": { "min_fee_amount": 0, "max_fee_amount": 9999999999.99, "percentage_of_fee_amount": 23, "currency": "ARS" } }, "exceptions_by_category": [ ] }Learn more. |