Return results using query parameters to narrow down results based on created_at and last_activity_at values

I am populating a database with the results of a variety of calls to the gitlab API including projects, pipelines, users, groups, etc. Is there a way to filter these results? For example, a GET to
https:///api/v3/projects?filter=last_activity_at gt “2017-09-03T10:00:00Z”

would only return projects that were updated after Sept 3, 2017. Adding parameters to the body of the GET request would be fine too. Is this currently possible, or in the works?

Thanks!