Get Auth0 User Metadata in NodeJS/Express backend (ReactJS frontend login)

If you are just looking to return information about the current user, I believe you can simply use the normalized user object, which does not require making an additional GET call to the management API.

To activate it, you simply instantiate it:

const { user } = useAuth0();

and then you can access properties of the user from within your code (i.e. {user.name}, {user.email}, etc.)