Documentation Mercado Libre
Check out all the necessary information about APIs Mercado Libre.
Documentation
Last update 06/07/2023
Free shipping
Products with free shipping
curl -X GET 'Authorization: Bearer $ACCESS_TOKEN' https://api.mercadolibre.com/items/$ITEM_ID
The free_shipping field, boolean, indicates whether the queried item has free shipping or not.
{
"shipping":{
"mode":"me2",
"local_pick_up":true,
"free_shipping":true,
"free_methods":[
],
"dimensions":null
}
}
Offer free shipping mode for the all country
Example:
{
"title": "Titulo del item",
...
"shipping": {
"mode": "me2",
"local_pick_up": false,
"free_methods": [
]
}
}
Offer free shipping for custom shipping
For countries where Mercado Envios is active, you can add custom shipping free in categories that do not accept ME.
"shipping": {
"mode": "not_specified",
"local_pick_up": false,
"free_shipping": true,
"methods": [],
"costs": []
}