How to get permalink using get_blog_post function in a multisite?

Ok i found the answer.

$post = get_blog_post( $blog_id, $data );
$link = get_blog_permalink( $blog_id, $data );
echo __('Post on') . ' "<a href="'.$link.'">' . $post->post_title . '</a>"';

I hope it will be useful for others 🙂