Helpful to verify reports of your own downtime, or to double check a downed website you are trying to access.
One of a set of tools we are providing to everyone as a way of saying thank you for being a part of the community.
Anyway, here is a simplified code
<cfoutput>
<cfset cnt1 = 1>
<cfloop array="#cfData['data']#" index="struct2">
<cfset cnt2 = 1>
<cfloop array="#struct2['images']#
<cfif struct3['height'] is 480>
<cfdump var="#struct3#">
<br/>
#cnt1#
:
#cnt2#
:
#struct3['source']#
</cfif>
<cfset cnt2 = cnt2 + 1>
</cfloop>
<cfset cnt1 = cnt1 + 1>
</cfloop>
</cfoutput>