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.
11 Comments - Last post 16 minutes ago by Foxhack
8,669 Comments - Last post 16 minutes ago by IronKnightAquila
966 Comments - Last post 2 hours ago by MeguminShiro
18 Comments - Last post 4 hours ago by AxJ
21 Comments - Last post 5 hours ago by ViTALiTY
3,080 Comments - Last post 8 hours ago by ParadaimiX
212 Comments - Last post 9 hours ago by pb1
4 Comments - Last post 2 seconds ago by Kappaking
177 Comments - Last post 14 minutes ago by Habaruku
8 Comments - Last post 18 minutes ago by Kappaking
153 Comments - Last post 38 minutes ago by Kappaking
198 Comments - Last post 1 hour ago by Esotilin
149 Comments - Last post 2 hours ago by Raggart
28 Comments - Last post 2 hours ago by charlbow
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.