I'm doing a curl like the following
curl -X GET "https://api.mercadolibre.com/items/MLA511127356"
and the response is a JSON, like for example this one:
"id": "MLA511127356",
"site_id": "MLA",
"title": "Item De Testeo, Por Favor No Ofertar --kc:off",
"subtitle": null,
"seller_id": "160252486",
"category_id": "MLA4967",
"official_store_id": null,
"price": 10,
"base_price": 10,
"original_price": null,
"currency_id": "ARS",
"initial_quantity": 16,
Is there a simple way to do this?
Thank you!