Costos por publicar
Contenidos
→Descripción de atributos →Filtrar por precio →Por precio y listing_type →Filtrar por tipo de publicación y cantidad →Filtrar por precio y categoría →Por precio y moneda →Filtrar por tipo de publicación y categoría →Por categoría
Descripción de atributos
Atributo | Descripción |
---|---|
listing_type_id | ID del tipo de publicación. |
listing_type_name | Nombre del tipo de publicación. |
listing_exposure | Nivel de exposición de la publicación. |
requires_picture | Muestra si el tipo de publicación requiere, por lo menos, una imagen. |
currency_id | ID de moneda de los costos. |
listing_fee_amount | Monto de el costo de publicación. |
selling_fee_amount | Monto de costo de venta. |
Filtrar por precio
Recupera diferentes tipos de publicaciones y cada costo asociado en la moneda local cuando el precio del artículo es 5000.
Ejemplo:
curl -X GET https://api.mercadolibre.com/sites/:site_id/listing_prices?price=5000
Respuesta:
{
"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": 1150,
"free_relist": false,
"stop_time": "2016-04-22T10:31:44.135-04:00"
},
{
"listing_type_id": "gold_premium",
"listing_type_name": "Oro Premium",
"listing_exposure": "highest",
"requires_picture": true,
"currency_id": "ARS",
"listing_fee_amount": 250,
"sale_fee_amount": 375,
"free_relist": false,
"stop_time": "2016-04-22T10:31:44.119-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": 525,
"free_relist": false,
"stop_time": "2016-04-22T10:31:44.121-04:00"
},
{
"listing_type_id": "gold",
"listing_type_name": "Oro",
"listing_exposure": "high",
"requires_picture": true,
"currency_id": "ARS",
"listing_fee_amount": 150,
"sale_fee_amount": 375,
"free_relist": false,
"stop_time": "2016-04-22T10:31:44.133-04:00"
},
{
"listing_type_id": "silver",
"listing_type_name": "Plata",
"listing_exposure": "mid",
"requires_picture": false,
"currency_id": "ARS",
"listing_fee_amount": 50,
"sale_fee_amount": 375,
"free_relist": false,
"stop_time": "2016-04-22T10:31:44.127-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": 550,
"free_relist": false,
"stop_time": "2016-04-22T10:31:44.130-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-22T10:31:44.116-04:00"
}
Por precio y listing_type
Recupera costos de publicaciones asociadas al tipo de publicación Gold en la moneda local cuando el precio del artículo es 5000.
Ejemplo:
curl -X GET https://api.mercadolibre.com/sites/:site_id/listing_prices?price=5000&listing_type_id=gold
Respuesta:
{
"listing_type_id": "gold",
"listing_type_name": "Oro",
"listing_exposure": "high",
"requires_picture": true,
"currency_id": "ARS",
"listing_fee_amount": 150,
"sale_fee_amount": 375,
"free_relist": false,
"stop_time": "2016-04-22T10:32:39.264-04:00"
}
Filtrar por tipo de publicación y cantidad
Recupera diferentes tipos de publicaciones y cada costo asociado en la moneda local cuando el precio del artículo es 5000 y la cantidad del mismo es 5.
Ejemplo:
curl -X GET https://api.mercadolibre.com/sites/:site_id/listing_prices?price=5000&quantity=5
Respuesta:
{
"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": 1150,
"free_relist": false,
"stop_time": "2016-04-22T10:33:22.631-04:00"
},
{
"listing_type_id": "gold_premium",
"listing_type_name": "Oro Premium",
"listing_exposure": "highest",
"requires_picture": true,
"currency_id": "ARS",
"listing_fee_amount": 800,
"sale_fee_amount": 375,
"free_relist": false,
"stop_time": "2016-04-22T10:33:22.614-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": 525,
"free_relist": false,
"stop_time": "2016-04-22T10:33:22.617-04:00"
},
{
"listing_type_id": "gold",
"listing_type_name": "Oro",
"listing_exposure": "high",
"requires_picture": true,
"currency_id": "ARS",
"listing_fee_amount": 480,
"sale_fee_amount": 375,
"free_relist": false,
"stop_time": "2016-04-22T10:33:22.628-04:00"
},
{
"listing_type_id": "silver",
"listing_type_name": "Plata",
"listing_exposure": "mid",
"requires_picture": false,
"currency_id": "ARS",
"listing_fee_amount": 160,
"sale_fee_amount": 375,
"free_relist": false,
"stop_time": "2016-04-22T10:33:22.622-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": 550,
"free_relist": false,
"stop_time": "2016-04-22T10:33:22.624-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-22T10:33:22.611-04:00"
}
Filtrar por precio y categoría
Recupera diferentes tipos de publicaciones y cada costo asociado en la moneda local cuando el precio del artículo es 5000 y la categoría es MLA1744.
Ejemplo:
curl -X GET https://api.mercadolibre.com/sites/:site_id/listing_prices?price=5000&category_id=MLA1744
Respuesta:
{
"listing_type_id": "gold_premium",
"listing_type_name": "Oro Premium",
"listing_exposure": "highest",
"requires_picture": true,
"currency_id": "ARS",
"listing_fee_amount": 357,
"sale_fee_amount": 0,
"free_relist": false,
"stop_time": "2016-04-22T10:33:58.127-04:00"
},
{
"listing_type_id": "gold",
"listing_type_name": "Oro",
"listing_exposure": "high",
"requires_picture": true,
"currency_id": "ARS",
"listing_fee_amount": 267,
"sale_fee_amount": 0,
"free_relist": false,
"stop_time": "2016-04-22T10:33:58.135-04:00"
},
{
"listing_type_id": "silver",
"listing_type_name": "Plata",
"listing_exposure": "mid",
"requires_picture": false,
"currency_id": "ARS",
"listing_fee_amount": 147,
"sale_fee_amount": 0,
"free_relist": false,
"stop_time": "2016-04-22T10:33:58.130-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-03-23T10:33:58.132-04:00"
}
Por precio y moneda
Recupera diferentes tipos de publicaciones y cada costo asociado en la moneda local cuando el precio del artículo es 5000 U$S.
Ejemplo:
curl -X GET https://api.mercadolibre.com/sites/$SITE_ID/listing_prices?price=5000¤cy_id=USD
Respuesta:
{
"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": 1150,
"free_relist": false,
"stop_time": "2016-04-22T10:34:27.793-04:00"
},
{
"listing_type_id": "gold_premium",
"listing_type_name": "Oro Premium",
"listing_exposure": "highest",
"requires_picture": true,
"currency_id": "ARS",
"listing_fee_amount": 250,
"sale_fee_amount": 375,
"free_relist": false,
"stop_time": "2016-04-22T10:34:27.779-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": 525,
"free_relist": false,
"stop_time": "2016-04-22T10:34:27.782-04:00"
},
{
"listing_type_id": "gold",
"listing_type_name": "Oro",
"listing_exposure": "high",
"requires_picture": true,
"currency_id": "ARS",
"listing_fee_amount": 150,
"sale_fee_amount": 375,
"free_relist": false,
"stop_time": "2016-04-22T10:34:27.791-04:00"
},
{
"listing_type_id": "silver",
"listing_type_name": "Plata",
"listing_exposure": "mid",
"requires_picture": false,
"currency_id": "ARS",
"listing_fee_amount": 50,
"sale_fee_amount": 375,
"free_relist": false,
"stop_time": "2016-04-22T10:34:27.786-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": 550,
"free_relist": false,
"stop_time": "2016-04-22T10:34:27.788-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-22T10:34:27.776-04:00"
}
Filtrar por tipo de publicación y categoría
Recupera el costo de publicación asociada al tipo de publicación Gold cuando el ID de categoría es MLA1743.
Ejemplo:
curl -X GET https://api.mercadolibre.com/sites/:site_id/listing_prices/gold?category_id=MLA1743
Respuesta:
{
"listing_type_id": "gold",
"listing_type_name": "Oro",
"listing_exposure": "high",
"requires_picture": true,
"currency_id": "ARS",
"listing_fee_amount": 267,
"sale_fee_amount": 0,
"free_relist": false,
"stop_time": "2016-04-22T10:35:02.225-04:00"
}
Por categoría
Recupera diferentes tipos de publicaciones y cada costo asociado en la moneda local cuando la categoría es MLA1743.
Ejemplo:
curl -X GET https://api.mercadolibre.com/sites/:site_id/listing_prices?category_id=MLA1743
Respuesta:
{
"listing_type_id": "gold_premium",
"listing_type_name": "Oro Premium",
"listing_exposure": "highest",
"requires_picture": true,
"currency_id": "ARS",
"listing_fee_amount": 357,
"sale_fee_amount": 0,
"free_relist": false,
"stop_time": "2016-04-22T10:35:31.996-04:00"
},
{
"listing_type_id": "gold",
"listing_type_name": "Oro",
"listing_exposure": "high",
"requires_picture": true,
"currency_id": "ARS",
"listing_fee_amount": 267,
"sale_fee_amount": 0,
"free_relist": false,
"stop_time": "2016-04-22T10:35:32.006-04:00"
},
{
"listing_type_id": "silver",
"listing_type_name": "Plata",
"listing_exposure": "mid",
"requires_picture": false,
"currency_id": "ARS",
"listing_fee_amount": 147,
"sale_fee_amount": 0,
"free_relist": false,
"stop_time": "2016-04-22T10:35:31.999-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-03-23T10:35:32.003-04:00"
}