Plugin json page

You can hook before the template is loaded and output page content directly:

function wpd_output_json_page(){
    if( is_page( 'Page Json' ) ){
        global $post;
        echo $post->post_content;
        die;
    }
}
add_action( 'template_redirect', 'wpd_output_json_page' );