How to get PNG (for webhook) from a roblox asset ID?

You can write your topic however you want, but you need to answer these questions:

  1. What do you want to achieve? Keep it simple and clear!
    I have a roblox assetid (“rbxassetid://xyz”) and I want to get the URL of that assetid to use for a discord webhook.

  2. What is the issue? Include screenshots / videos if possible!
    Nothing works

  3. What solutions have you tried so far? Did you look for solutions on the Developer Hub?
    I have tried most of the URLs and end-points that have been mentioned on the devforum but none of them seem to work.

Looks like this may have been answered on another post, but you’d use the assetdelivery API: How can I get a URL for a PNG from Roblox Asset

This doesn’t work for me, using the full assetid or just the numbers doesnt work.

is it an ID of a decal or an image?

For example I have an asset id of rbxassetid://9976177334747699761773347476
Putting it into the url like so https://assetdelivery.roblox.com/v1/asset?id=99761773347476
and then setting that as the avatar_url in the discord webhook JSON

Which results in the webhook having the default discord icon. Here is my code:

	local ID = 99761773347476

	local Message = {
		["username"] = "Ore Announcer",
		["avatar_url"] = `https://assetdelivery.roblox.com/v1/asset?id={ID}`,
		["content"] = "Hello World"
	}

	HttpService:PostAsync(STUDIO_URL, HttpService:JSONEncode(Message), Enum.HttpContentType.ApplicationJson)

Unless I am missing something or misunderstanding I dont understand why this doesnt work

I have this so far, but it’s not perfect.

local HS = game:GetService("HttpService")

local Id = 99761773347476

local Success, Request = pcall(HS.RequestAsync, HS, {
	Url = `https://thumbnails.roproxy.com/v1/assets?assetIds={Id}&returnPolicy=PlaceHolder&size=420x420&format=png`,
	Method = "GET"
})

if Success then
	local Success2, Body = pcall(HS.JSONDecode, HS, Request.Body)
	if Success2 then
		if Body.errors then
			warn(Body.errors)
		else
			local Image = Body.data[1].imageUrl
			print(Image)
		end
	else
		warn(Body)
	end
else
	warn(Request)
end

The Image variable is an URL to a PNG.

1 Like

You can’t use Roblox APIs within Roblox, you will need a proxy such as RoProxy

1 Like

Dont really care about it being perfect atm just looking to make it work; ill try it out soon

Edit: This works; Thanks for the help!