-
I want to get the shirt price by its id in the roblox catalog.
-
I cannot find the price of the shirt or pants.
-
I tried using marketplaceService:GetProductInfo(“id”) but it has no attributes about the price in robux.
1 Like
I think what you’re looking for is on the Catalog API
use a POST request (i think)
https://catalog.roblox.com/v1/catalog/items/details
Swagger UI (you can also use the docs for a reference)
You will need to replace id with the shirt or pants Id
"items": [
{
"itemType": 1,
"id": {shirt or pants id here}
}
]
}
There’s also additional details that is better than GetProductInfo
(Someone, correct me if i’m wrong. I’m not too good with APIs and stuff)
A example if you can? i tried that but understood nothing