You can find more information here (if you can read REST)!

vienna

TDTStats

REST filtering

You can filter any resource by going deeper into the directory structure. Adding a /thing/ behind an URL will filter only that thing out of the usual response.

Some collections may be filtered to return only entries that match particular conditions. These conditions are specified using filters in the request URI. The following filters are supported, following OpenSearch conventions:

   
filterBy<property>The name of the property to filter against.
filterValue<value>The string to match against the <property> value.
filterOpcontainsReturns all entries where <property> contains <value>.
 startsWithReturns all entries where <property> value begins with <value>.
 presentReturns all entries where <property> is defined (<value> is ignored).
 equalsReturns all entries where <property> is exactly <value>.