Add the ability to filter endpoints by creation date (created_at) and last updated date (last_updated) attributes to improve API efficiency and user experience.
Current Limitation:
Currently, there's no way to filter endpoints by date ranges, which forces users to:
  • List all endpoints unnecessarily
  • Make multiple API requests to find relevant data
  • Handle large datasets client-side
Proposed Solution:
Implement date range filters with the following capabilities:
Filter by created_at (endpoint creation date)
Filter by last_updated (last modified date)
Support for operators:
  • Greater than (gt)
  • Less than (lt)
  • Between ranges
Thanks.