Hello.
I have a JSON response with a list of items (and data of each item). For example:
code[
{
"titulo": "Cazadora",
"precio": 10,
"slug": "SRbEZFaZ3M5pc",
"descripcion": "Cazadora finita de entretiempo"
},
{
"titulo": "Coche",
"precio": 5,
"slug": "FRbEZFaZ3M5p3",
"descripcion": "Coche RC a pilas"
}
]/code
Is it possible to filter the JSON response to use only the data of the item that I need (selecting an unique identifier as "slug")?
Thanks.