Hi, After many hours of puzzling i decided to post my question here. I have a simple JSON string returned from bit.ly: { "errorCode": 0, "errorMessage": "", "results": { "http://www.averylongexampleurl.net": { "hash": "1nRtGA", "shortCNAMEUrl": "http://bit.ly/aKZF0Q", "shortKeywordUrl": "", "shortUrl": "http://bit.ly/aKZF0Q", "userHash": "aKZF0Q" } }, "statusCode": "OK" } I deserialized this JSON string and cfdumped the resulting variable <cfreturn deserializejson(output.filecontent)> It is a struct in a struct (in a cfdump-struct) Now, i want the use the value "http://bit.ly/aKZF0Q" but don't know how to reference that value with dot-notation, like this #output.results.???.shortUrl# An image of the cfdump is here: http://farm5.static.flickr.com/4040/4359424173_f480cab58b_o.jpg Anyh help appreciated.