From what I understand, a good REST URL for getting a resource would look like this:
/resource/{id}
The problem I have is, that I often need to get a large number of resources at the same time and don't want to make a separate http call for each one of them.
Is there a neat URL design that would cater for that or is this just not suitable for a REST api?