API urls

Hi,

I am studying up on the Omeka REST API and I'm wondering how to search within tags. For example, if I want a list of items within a certain tag, what's the url I can make a GET request to?

myurl.com/api/tags/22 will show me the info about the actual tag, but I can't figure out how to access the items with that certain tag.

As it stands now, it might take some round trips. But if you know the tag(s), you can use

api/items?tags=tag

where the 'tag' at the end is the tag you are looking for

to get the items with a specific tag (or a comma-separated list for multiple tags)

It might not hurt for us to put that kind link directly in the data reported from the tags resource. I'll bring up the possibility with the dev team.

Thanks!