Looks like its other limited items as well
I think this happened after roblox allowed the trading of limited 2.0, because limited 2.0s don’t have an issue displaying the original price.
The reason it displays “This item is not available at this time” is because the the API returns null (PriceInRobux)
https://economy.roblox.com/v2/assets/76233968067050/details
{
"TargetId": 76233968067050,
"ProductType": "User Product",
"AssetId": 76233968067050,
"ProductId": 2676996995,
"Name": "Snowflake Eyes",
"Description": "A look that’s as cold as ice. ",
"AssetTypeId": 18,
"Creator": {
"Id": 1,
"Name": "Roblox",
"CreatorType": "User",
"CreatorTargetId": 1,
"HasVerifiedBadge": true
},
"IconImageAssetId": 0,
"Created": "2024-12-16T23:07:01.277Z",
"Updated": "2025-01-01T17:30:58.757Z",
"PriceInRobux": null,
"PriceInTickets": null,
"Sales": 0,
"IsNew": false,
"IsForSale": false,
"IsPublicDomain": false,
"IsLimited": true,
"IsLimitedUnique": false,
"Remaining": null,
"MinimumMembershipLevel": 0,
"ContentRatingTypeId": 0,
"SaleAvailabilityLocations": null,
"SaleLocation": null,
"CollectibleItemId": null,
"CollectibleProductId": null,
"CollectiblesItemDetails": null
}
Where as if you use this API for a limited 2.0, it returns the original price(PriceInRobux)
https://economy.roblox.com/v2/assets/12803855954/details
{
"TargetId": 12803855954,
"ProductType": "Collectible Item",
"AssetId": 12803855954,
"ProductId": 1502103104,
"Name": "Glossy Red Baseball Cap",
"Description": "This hat isn’t worn out, it’s brand new!",
"AssetTypeId": 8,
"Creator": {
"Id": 1,
"Name": "Roblox",
"CreatorType": "User",
"CreatorTargetId": 1,
"HasVerifiedBadge": true
},
"IconImageAssetId": 0,
"Created": "2023-03-16T18:46:08.91Z",
"Updated": "2023-03-16T22:35:06.833Z",
"PriceInRobux": 75,
"PriceInTickets": null,
"Sales": 0,
"IsNew": false,
"IsForSale": false,
"IsPublicDomain": false,
"IsLimited": false,
"IsLimitedUnique": false,
"Remaining": 9709873,
"MinimumMembershipLevel": 0,
"ContentRatingTypeId": 0,
"SaleAvailabilityLocations": null,
"SaleLocation": {
"SaleLocationType": 5,
"UniverseIds": []
},
"CollectibleItemId": "18d8f997-0218-495a-bf40-2bac0d4772d4",
"CollectibleProductId": "f2138ecf-89b6-47d8-ada6-37230ff88699",
"CollectiblesItemDetails": {
"CollectibleLowestResalePrice": 95,
"CollectibleLowestAvailableResaleProductId": "cd0de11c-284c-413b-a635-e6bc42cdcb79",
"CollectibleLowestAvailableResaleItemInstanceId": "b830a9e9-532e-47ce-8364-7354d7331d11",
"CollectibleQuantityLimitPerUser": null,
"IsForSale": false,
"TotalQuantity": 10000000,
"IsLimited": true
}
}