Skip to content

Market Management


Change Gamepass price

Changes price of gamepass


PATCH /api/roblox/gamepass/change-price
Terminal window
https://api.cookie-api.com


URL Parameters
workspace_id<workspace id>

{
"gamepass_id": "number",
"price": "number"
}

curl --location --request PATCH 'https://api.cookie-api.com/api/roblox/gamepass/change-price?workspace_id=12345' \
--header 'Authorization: API_Key' \
--header 'Content-Type: application/json' \
--data '{
"gamepass_id": "1138251791",
"price": "100"
}'

Responses
{
"success": true
}


Change group item price

Changes price of an asset in the group store


PATCH /api/roblox/assets/change-price
Terminal window
https://api.cookie-api.com/api/roblox/assets/change-price


URL Parameters
workspace_id<workspace id>

{
"asset_id": "number",
"price": "number"
}

curl --location --request PATCH 'https://api.cookie-api.com/api/roblox/assets/change-price?workspace_id=12345' \
--header 'Authorization: API_Key' \
--header 'Content-Type: application/json' \
--data '{
"asset_id": "113180074739596",
"price": "500"
}'

Responses
{
"success": true
}


List last group sales

Lists last group sales


GET /api/group/group-sales
Terminal window
https://api.cookie-api.com/api/group/group-sales


URL Parameters
workspace_id<workspace id>

curl --location 'https://api.cookie-api.com/api/group/group-sales?workspace_id=12345' \
--header 'Authorization: API_Key'

Responses
{
"sales": {
"data": [
{
"agent": {
"id": 198879495,
"name": "RedLily",
"type": "User"
},
"created": "2025-04-02T17:36:26.831Z",
"currency": {
"amount": 350000,
"type": "Robux"
},
"details": {
"id": 113180074739596,
"name": "Cookie API T-shirt",
"type": "Asset"
},
"id": 0,
"idHash": "********************",
"isPending": true,
"purchaseToken": "****************************************"
}
],
"nextPageCursor": null,
"previousPageCursor": null
},
"success": true
}