如何使用axios获取更多数据?

当我这样做时:

const uuidapi = await axios.get('https://api.hypixel.net/player?key=mykey&name=' + args[1]);
console.log(uuidapi);

我收到来自Axios的回复:

https://paste.menudocs.org/paste/7vppu

So my question is: How do I get the Data after "socialMedia"? Heres how socialMedia looks like:

"socialMedia": {
          "links": {
            "YOUTUBE": "https://www.youtube.com/channel/UC1L7H9qQyB2zZgt-1XUv6jA",
            "DISCORD": "Altpapier#4847
        }
    }

Why does it say socialMedia: [Object], and how do I get more than this? I can't use const { data } = await axios.get(URL); because I want to get 2 URL responses with the complete data.