MPS Product Info (price) not working

im trying to get the price of a roblox limited but the value returns nil.

local assetId = 19027209
	local assetInfo = mps:GetProductInfo(assetId)
	print(assetInfo.PriceInRobux)

Because limited items do not have a set price, it may not be able to return the “lowest seller price” as you would expect.

2 Likes

You can’t get the price of a limited this way (to my knowledge). You can for other assets though. Correct me if I am wrong.

1 Like

so that being said
is there a way to get the lowest price of a limited?

You would need to use http service and find an api that connects to the marketplace.

2 Likes

Read up on this: External Catalog Queries | Documentation - Roblox Creator Hub

1 Like