curl --request POST \
--url https://api.steamsets.com/v1/account.listApps \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"page": 1,
"filters": {
"appType": "<string>",
"excludeEvents": true,
"excludeSales": true,
"playtime": {
"max": 123,
"min": 123
}
},
"id": {
"accountId": 1,
"steamId64": "<string>"
},
"order": {
"by": "appId",
"direction": "desc"
},
"search": "<string>",
"vanity": {
"type": "steam",
"value": "<string>"
}
}
'