so far ive tried this but it turned out to be slower than the original one.
https://gist.github.com/SkyBlockDev/ff4b81f45ed284fe6a31b63926cc9de3
Couldn't find any other way of doing this while being able to keep the results.
i was originally doing this which was faster but i want to be able to do all requests (65+) at once for faster speeds since this takes like 15 seconds.
for a in 2..r.total_pages {
let r = get(a).await;
auctions = parse_hypixel(r.auctions, auctions);
}