JSON parsing logic GET request

Hi,

I’m trying to get some info grom a JSON source but I keep banging my head to the walls. I could use some help here.

So, I retrieve an URL and receive the content:

[
    {
        "id": 1,
        "parent_id": 0,
        "title": "Gft",
        "slug": null,
        "tags": null,
        "page_title": "Gft",
        "menu_title": "Gft",
        "icon": "appel-gft",
        "ophaaldatum": "2023-09-26"
    },
    {
        "id": 2,
        "parent_id": 0,
        "title": "Restafval",
        "slug": null,
        "tags": null,
        "page_title": "Restafval",
        "menu_title": "Restafval",
        "icon": "kliko-grijs-rest",
        "ophaaldatum": "2023-10-03"
    }
]

And I try to retrieve the info ‘title’ and ‘ophaaldatum’ from JSON using logic blocks as follow:

The ID works, but when using the ‘title’ in the logic block, it outputs the complete json message.

What goes wrong here?

Best regards,

You’re not using the correct tag (you need to use the (ⓐ Result) tag, not the (ⓐ Response) tag).

Arggh @robertklep ,

Thank you for pointing out my mistake! I think I’ll be needing regular coffee breaks :wink:

Best regards,