How to get the latest URL of my blog?

easy to do with get_posts

    // search the last post
    $posts = get_posts([
        "posts_per_page" => 1,
    ]);


    foreach ($posts as $p) {
        // display the permalink
        echo esc_html(get_permalink($p));
    }

documentation of get_posts :
https://codex.wordpress.org/Function_Reference/get_posts