What’s the difference between “wp” and “wp_loaded”?

wp_loaded is fired once WordPress, all plugins, and the theme are fully loaded and instantiated.

wp runs immediately after the global WP class object is set up.

wp_loaded fires before wp. See the actions run during a typical request.