Hi,
For doing some querying against database export (e.g. to produce some personal stats) it would be useful to get this from the API:
Post ids in my own private sets
This would require changing /post_sets/{id}.json API to allow viewing the private set if creator_id matches the user that is making the request, instead of only checking for Moderator+
Vote ids API
New api, similar to post_sets, only supplies ids from post_votes table for user_id that is making the request, does not look up post information.
Favorite ids API
New api, similar to post_sets, only supplies ids from favorites table, does not look up post information. This can either work similarly to the vote ids api or be public (since favorites are public)
Currently, for both set and vote information I would need to perform a posts search and fetch each page, including post information (which is then dropped, because I have a db export and only care about id).
For favorites there is a standalone favorites api, but it has the same problem, where it looks up paginated post information.
With these, it would be possible to make a single request for each.
Thanks!
Updated