Get the excerpt by page ID from another blog in a wordpress multisite?

you already called get_post() then why you are not getting the excerpt from post data, like this.

$post = get_post( $pageid ); 
$excerpt = $post->post_excerpt;

// get post content
$content = $post->post_content;

for more information about get_post() see the WordPress codex