Hook for page Request?

// Kick in right before theme takes over, when WP is all loaded
add_action('wp', function(){
    list($uri, $qs) = explode('?', $_SERVER['REQUEST_URI']);
    // Do stuff here:
    // ... STUFF ...
});

Cheers!