It would be great if [http interface clients](https://docs.spring.io/spring-framework/docs/6.0.0/reference/html/integration.html#rest-http-interface) had support for: - Page as a response type - Pageable / Sort as request parameters ```kotlin interface FooClient { @GetExchange("/foos") public fun getFoos( pageRequest: Pageable, ): Page<Foo> } ``` This would bring feature parity for what is supported in controllers today. I believe spring openfeign clients support this as well Original: https://github.com/spring-projects/spring-framework/issues/32286