How to get X-CRSF token with out .ROBLOSECURITY?

Hello, so I am trying to get a price of an item off catalog, but whenever I send request to “https://catalog.roblox.com/v1/catalog/items/details” with “POST” method, it requires CRSF token. But the case is, I don’t want to use my cookie for security reasons. I know it’s possible, because if you go to a catalog item while not logged in, you can still see the price on the site. So, how do I get a CRSF token with out a cookie?

If you’re doing it from an external point, (E.g.from another website or something) then you’re going to need an alternative account and a valid cookie. It’s named ROBLOXSECURITY for a reason lol.

If you really don’t want to do this alt account stuff and you’re on an external POV, then why not try scraping the website for the data you need? It’s what I did when I was using python to verify someones status/header.

If it’s inside of the engine, then you can call this API Depending on the details you want:
https://developer.roblox.com/en-us/api-reference/function/MarketplaceService/GetProductInfo

1 Like