Documentation Mercado Libre

Check out all the necessary information about APIs Mercado Libre.
circulos azuis em degrade

Documentation

Last update 30/11/2023

SEC Stamp and Energy Efficiency Label for CBT

Note:
This resource only applies to Chile.

The Chilean government mandates specific procedures for the sale of electronic products. If you work with sellers who are listing products on the Chile site, it's crucial to adhere to these requirements to prevent potential moderation. Below is a detailed list specifying the criteria for this category of products:


  • Low-voltage electrical items (e.g., cables, extension cords, and other power connection products) without Safety Certification (issued by the SEC).
  • Operate on electricity or fuels and are subject to energy efficiency labeling requirements (e.g., refrigerators, air conditioners, and others). Per regulations, products lacking the mandatory energy efficiency label are prohibited from public view.
  • Mimic electricity-operated toys, featuring shapes such as animals, characters, people, or scale models, in contravention of IEC 60335-1 and the guidelines of the Superintendence of Electricity and Fuels (SEC).

For more information about, consult the FAQ and Learning Center.



SEC Stamp

Upload the stamp image

You can upload your image by searching for your product's stamp and associating it to yourImagePath


As an example, this image will probably be like this:



Request:

curl 'https://api.mercadolibre.com/pictures/items/upload' -H 'Authorization: Bearer $ACCESS_TOKEN' -F 'file=@"yourImagePath"'

For this request, you will have a response containing an ID, that is the first field.


Response:

{
    "id": "964943-CBT72035468960_102023",
    "max_size": "524x748",
    "dominant_color": null,
    "hash": "63105727d28a35c56a115811d2c44eb7",
    "crop": {
        "validated": false,
        "x_offset": null,
        "x_size": null,
        "y_offset": null,
        "y_size": null
    },
    "variations": [
        {
            "size": "524x748",
            "secure_url": "https://http2.mlstatic.com/D_NQ_NP_964943-CBT72035468960_102023-F.jpg",
            "url": "http://http2.mlstatic.com/D_NQ_NP_964943-CBT72035468960_102023-F.jpg"
        },

Take that ID to use in the next request.


Associate SEC Stamp attribute to item

Now, you will need to create or update a CBT item, referring to the image uploaded before.


Note that, for this example, your ID is 964943-CBT72035468960_102023. Here you need to change this field for the ID you got in the previous step.


Body of SEC Stamp Label

{
    "id": "SEC_STAMP",
    "name": "SEC stamp",
    "value_id": null,
    "value_name": "964943-CBT72035468960_102023",
    "value_struct": null,
    "values": [
        {
            "id": null,
            "name": "964943-CBT72035468960_102023",
            "struct": null,
            "source": null
        }
    ],
    "attribute_group_id": "OTHERS",
    "attribute_group_name": "Others",
    "source": null,
    "value_type": "picture_id"
}

Energy Efficiency Label

Upload the stamp image

The Energy Efficiency Label is also a requirement to sell some CBT items, if it is your case, you should follow the next steps to include the picture of it and the information related.


As an example, this label will be something like this:



Associate Energy Efficiency Stamp

Now, you will need to create or update a CBT item, referring to the image uploaded before.


Note that, for this example, your ID is 964943-CBT72035468960_102023. Here you need to change this field for the ID you got in the previous step.


Body of Energy efficiency Label

 {
    "id": "ENERGY_EFFICIENCY_LABEL",
    "name": "Energy efficiency label",

    "value_id": null,
    "value_name": "964943-CBT72035468960_102023",
    "value_struct": null,
    "values": [
        {
            "id": null,
            "name": "964943-CBT72035468960_102023",
            "struct": null,
            "source": null
        }
    ],
    "attribute_group_id": "OTHERS",
    "attribute_group_name": "Others",
    "source": null,
    "value_type": "picture_id"
}