Insert a user-made outfit ("looks") by id

I’m trying to find a way to get a HumanoidDescription or JSON response from querying the ID of a user-made outfit that is posted on the My Posted Outfits section in the Roblox app. When you get a share link you land on a page that looks like what you can see below, where the link contains an ID. Is there any way to use this ID to import the outfit into Studio?


The outfit I’m using as a trial:
https://www.roblox.com/looks/6954265135743238304/Cute-Gothic-Black-and-White-Outfit


These are some API's I've tried but I'm certain I'm using them the wrong way and am lacking an understanding if how to, or knowledge of whether it is possible to achieve what I'm trying to do
local bundleId = 6954265135743238304
-- This gives a warning stating: 
-- "IntegerParsing: Number literal exceeded available precision and was truncated to closest representable number"
print(game:GetService("Players")Players:GetHumanoidDescriptionFromOutfitId(bundleId))
print(game:GetService("AvatarEditorService"):GetOutfitDetails(bundleId))

Both approaches result in a HTTP 404. If anyone knows how to approach this, I’d deeply appreciate any help in finding the right direction!

The API you’d wanna use is this one:

https://apis.roblox.com/look-api/v2/looks/{lookId}
1 Like