Chris Heilmann's unobtrusive flickr badge, hacked to use the NMM collections as a data source, rather than flickr. Try editting the query and pressing 'update' to change the results. Click a thumbnail to enlarge. You can leave feedback on the blog post: Opening up data with YQL.

use 'http://eatyourgreens.org.uk/yql/nmm-search.xml' as nmm.collections.search;
select * from nmm.collections.search where category = 'art' and searchterm = '"tower bridge"'

Sample queries you can try:


select * from nmm.collections.search
where searchterm=''
and (authority,category) in 
(select authority,id from nmm.collections.authorities
where authority = 'category' and title = 'astronomical')


select * from nmm.collections.search
where searchterm=''
and (authority,category) in 
(select authority,id from nmm.collections.authorities
where authority = 'people' and title = 'pears')


select * from nmm.collections.search
where searchterm=''
and (authority,category) in 
(select authority,id from nmm.collections.authorities
where authority = 'vessels' and title = 'Aquitania')


select * from nmm.collections.search
where searchterm=''
and (authority,category) in
(select authority,id from nmm.collections.authorities
where authority = 'site' and title = 'erebus bay')