How to retrieve current page WP_Query arguments?

Have you tried using $wp_query ?

global $wp_query;
var_dump($wp_query->query_vars);

For a single variable, you can use get_query_var

Or you could try just dumping the $_POST , var_dump( $_POST );

Or maybe var_dump( $GLOBALS['post'] );