Roblox asset ID lookup

Paste a Roblox catalog URL or a numeric asset ID. The tool pulls the ID, shows the catalog thumbnail, and gives you a clean link to the asset's catalog page.

Asset ID

How asset IDs work on Roblox

Every uploaded asset on Roblox — a decal, a hat, a face, a model — has a numeric ID that uniquely identifies it. The ID lives in the URL of the asset's catalog page and is what developers reference inside Roblox Studio when they want to use that asset in a game. A typical catalog URL looks like https://www.roblox.com/catalog/1234567890/Some-Name, where the numeric segment is the asset ID.

This tool is for the times when you have a URL but need just the ID — for example, you're pasting a decal ID into a script, or you're cross-referencing an asset on a forum that only accepts numbers. Paste the URL and the calculator extracts the ID, shows you the catalog thumbnail (so you can confirm it's the right asset visually), and gives you a clean catalog link.

The thumbnail is pulled directly from Roblox's public CDN as an <img> tag — the URL pattern is what catalog pages use themselves. No Roblox API call is made, which is intentional: Roblox's public APIs don't send CORS headers and can't be called from a static page like this one.

When to use it

  • You're scripting in Roblox Studio and need to grab the ID from a URL someone sent you.
  • You're moderating a community and want to confirm a decal looks the way someone claims.
  • You're comparing two listings and want their thumbnails side by side.

FAQ

Does this work for game IDs (places, universes)?

Not in the same way. Places have their own URL pattern (/games/<placeId>/...), and there's no equivalent thumbnail-by-ID URL that's reliable without an API call. This tool is for catalog assets.

Why didn't the thumbnail load?

Either the ID isn't a real asset, the asset has been moderated, or your network can't reach the Roblox CDN. The status check can confirm reachability.

Can I use this to find an asset's price?

No. Pricing requires the Roblox API, which this site doesn't call. The catalog link opens the page where Roblox shows the current price.

Related tools