Parsing json response in deluge Script

Parsing json response in deluge Script

Hi,

I am using a rest api call which returns the response in JSON format.  How can I process it in deluge script to get access the values from that response?

For example my response looks like this,
{
    "name": "mkyong",
    "age": 30,
    "address": {
        "streetAddress": "88 8nd Street",
        "city": "New York"
    },
    "phoneNumber": [
        {
            "type": "home",
            "number": "111 111-1111"
        },
        {
            "type": "fax",
            "number": "222 222-2222"
        }
    ]
}