Forgive me for what seems like a simple question, but I lack programming skills. I am attempting to extract a specific value from an API response. The JSON I receive contains multiple values, but I only require one particular piece of information. Here is the link to the API: =>
"results": [
{
"index": "aboleth",
"name": "Aboleth",
"url": "/api/monsters/aboleth"
},
{
"index": "acolyte",
"name": "Acolyte",
"url": "/api/monsters/acolyte"
},
{
"index": "adult-black-dragon",
"name": "Adult Black Dragon",
"url": "/api/monsters/adult-black-dragon"
}]
and so forth,
My goal is to retrieve only the index for each entry.
I appreciate your help in advance.