i think you can probably manipulate http://steam.tools to filter owned cards and then drop half the columns and export to csv or excel. at least in theory it should get the job done. xD
Comment has been collapsed.
Hey guys, don't you know if there is a way to get subId for gived appId? For example: if I have appId 241930 (Shadow of mordor) I would like to call API and get 51209 which is a subId of a package containing Shadow of mordor. It could of course return multiple subIds.
Sorry to ask unrelated question, but it's kinda "intopic" =). Consider it a bump with more text ^^.
Comment has been collapsed.
17 Comments - Last post 45 minutes ago by SeaGoblin
40 Comments - Last post 55 minutes ago by rngn
345 Comments - Last post 1 hour ago by Vasharal
1,041 Comments - Last post 1 hour ago by sensualshakti
78 Comments - Last post 1 hour ago by cheshirecatgirl
10 Comments - Last post 2 hours ago by Axelflox
42 Comments - Last post 3 hours ago by SeaGoblin
523 Comments - Last post 4 seconds ago by DrTenma
412 Comments - Last post 1 minute ago by steveywonder75
108 Comments - Last post 6 minutes ago by PapaSmok
109 Comments - Last post 11 minutes ago by schmoan
62 Comments - Last post 20 minutes ago by NucularS
493 Comments - Last post 24 minutes ago by GreyF0xx
15 Comments - Last post 29 minutes ago by Yorickmeister
A bit of background
I use Steam Card Exchange a lot and I like their Watchlist function.
The problem is that it's hard to keep synched; i.e. to contain the exact list of games that I currently own cards for. Most of the time their will be games in the list I no longer have cards of, or games will be missing that I do have cards for.
So I decided to write a userscript to automatically synch up the list. It all worked perfectly at first glance...
The problem
Then I found out that the JSON file returned by this API: http://steamcommunity.com/my/inventory/json/753/6 is limited to 2,000 items. If you have more items then the JSON will end with: "more":true,"more_start":2000.
This basically scuppers the Javascript approach as I have to get the JSON asynchronously and can't do a second call (unless I cache it all in local storage or something equally involved).
The question
Does Steam offer a way to grab a JSON/list of games (appids) that I own cards for?
So it should not include games that have cards but which I currently have no cards for.
That list would be a lot shorter than the JSON with all cards as linked above. And all I need is that list; I don't need details on individual cards to synch.
Comment has been collapsed.