How to change the date and time in REST API for comments?

In general I would be careful modifying existing endpoints, but you could try using the object passed into the callback, e.g.:

'get_callback' => function( $object ) {
    return date_i18n( __( 'j. F Y, H:i', 'wpse' ), strtotime( $object['date'] ) );
 },