This tag indicates a proposal for a new feature for the Stack Exchange API, or a change to an existing feature.

learn more… | top users | synonyms

4
votes
2answers
101 views

Add optional parameter to get only paging information?

On methods that support total/page/pagesize add an optional parameter to get just those fields when making a request. (pageInfo=true). I am thinking specifically in apps that have real-time like ...
4
votes
1answer
89 views

api.stackoverflow/0.8/questions now gives answers as well by default?

Up till now the /questions page hasn't given the answers to the question, you'd have to get the question ID and then use that to get the answers to the question. This means the size of the JSON file ...
4
votes
3answers
200 views

Can we get a sandbox please?

I think that we should have some sort of a sandbox site where we can posted questions, answers and mentions in a control environment. Currently I'm wokring with StackOverflow but I can post "test" ...
4
votes
2answers
136 views

Verifying and linking SE users from external sites.

It would be great if you could allow your sites user base to link too their SE userId and this could then be verified. Not sure if there are privacy issues here, but one way would be too include the ...
4
votes
1answer
624 views

API endpoints do not set Access-Control-Allow-Origin, so CORS requests fail

This looks like it might have been requested before: Add CORS headers to API output In order for CORS to work, the Access-Control-Allow-Origin header (and related headers) must be set. With CORS ...
4
votes
2answers
52 views

Expose the contents of the “accounts” tab of the SE network profile as machine-readable data

It would be really nice if there were a way to get all the data that is displayed on the accounts tab of the Stack Exchange network profile for a user (e.g. mine) as machine-readable data with a ...
4
votes
3answers
139 views

StackAuth feature requests

Would it be possible to have a hash of a sites icon so that you only have to download when it's changed. Or is this already implemented with HTTP cache or something like that (if it is could someone ...
4
votes
2answers
128 views

Can we not limit requests based on the first one?

According to the answer given to this question, it seems like the API limits requests based on the first one. (Regardless of the presence of a key.) Can this please be changed? It really hinders ...
4
votes
1answer
61 views

What happened to the JSON documentation for the API?

Back in version 1.1 of the API, we used to be able to do: http://api.stackoverflow.com/1.1/questions?help ...which would return information about the method in JSON format. However, attempting ...
4
votes
2answers
83 views

Document fields that may be not be included in responses

I'd like to see documentation on what fields may not be included in responses or, alternatively, which fields are guaranteed to be included. Currently it's a little confusing because some fields may ...
4
votes
1answer
117 views

Include Full Post Details In /users/{id}/timeline

I have a feature request. I'm trying to pull the recent activity about a user from the API. So I'm parsing /users/{id}/timeline. But that only gives me meta-information about the activity. So ...
4
votes
1answer
94 views

Add reputation and site URL to 1.1 associated accounts

I know you wanted to reduce the amount of data returned, but hasn't it gone a little far? Especially as there are no numerical site IDs. For example the Apple site is now called AskDifferent, however ...
4
votes
1answer
90 views

Does there exist a method call to get unaccepted answers?

I noticed there was the method /questions/unanswered which returns questions with no upvoted answers but I'm more interested in something like /questions/unaccepted which returns all questions that ...
4
votes
1answer
94 views

/users/tags should contain scores

I am implementing some simple JavaScript/bookmarklet based apps that show some reputation info, including the score in the User's top tags (roughly based on this previous bookmarklet of mine). Now I ...
4
votes
1answer
186 views

all api endpoints except api.stackoverflow.com are failing paged requests with HTML 503

UPDATE: I am being told that this is by design. I could not disagree more. The inconsistent 503 throttling issue aside, the API is JSON based. HTML errors serve no purpose in response to an API ...
4
votes
0answers
35 views

Add a special page where developers can reset throttle timeouts

As George Edison noted, it would be useful to have a special page where developers can reset the throttle timeout when we accidentally trigger it. This happened to me this morning — I got banned for ...
4
votes
0answers
57 views

Requesting favorite questions should report which users have favorited it

I can request the favorite questions of a user via the users/{id}/favorites endpoint. If I'm only requesting the favorites for one user, then I know that all of the returned questions are the ...
4
votes
0answers
43 views

/tags fromdate and todate does nothing

Altough the help/documentation lists 'todate' and 'fromdate' parameters for tags they do not work. This may be related to tags not having a creation_date. It would be great if we could filter tags by ...
4
votes
1answer
59 views

Why is edit_count exposed on Comments but not Questions or Answers

Comments have an edit_count field, why is this field not included with Question and Answer responses? Further, the edit_count field has limited utility on a comment where, lacking revisions and a ...
4
votes
2answers
92 views

/user/{id}/notifications API call

I was contemplating adding notifications to my app, Droidstack. I would've liked to be able to add notifications for when new answers are posted to a user's (favorite) questions, when new comments are ...
4
votes
0answers
80 views

Can we have an Owner Name value in Question, Answer, and Comment?

If a post has no owner for whatever reason, we don't get the owner object in the response. Thus, it is impossible to display the username of the missing owner. The site is able to do this, so we ...
4
votes
0answers
41 views

Merging/migration should be reflected by the API

Now that we have a new merging/migration system that keeps records of all merges, I think that this information should be visible through the API: Questions that are merged into other questions ...
3
votes
2answers
134 views

Provide a “latest” version for apps that want to keep up

By pointing my application at http://api.stackoverflow.com/n.n/... or possibly http://api.stackoverflow.com/latest/... I could keep up with all the version changes released. Alternate forms to ...
3
votes
1answer
38 views

Accept rate not available in the 2.0 API

Would it be possible to add the accept_rate field to both the user and shallow_user objects? For example, using the 1.0 API, I can see that Jon Skeet has an accept rate of 95%. ...
3
votes
1answer
119 views

Global Inbox uses the API?

Just wondering if the GI uses the APIto work, it could but it would require a lot of requests (though it won't take up [internet] bandwidth because it's done inside the server cluster (that is ...
3
votes
1answer
85 views

Creation of an API 'about' method for the application key being passed

Hi there! Because the API uses a key, I'd like to ask if a request can be created so that, on application start (and, during runtime), you can ask whether your key is valid, and get back information ...
3
votes
1answer
52 views

Is there a meta api?

Is there a meta API for StackExchange? I don't mean an API for accessing meta sites, but rather an API to get information about the API itself. What I'm looking for is something that I can call that ...
3
votes
1answer
34 views

Is there an API to fetch tags related to a given tag?

I'm interested in making a tool that explores the tags of a site for tags which should be merged or mention each other in tag wikis etc. On the page of any given tag there is a column on the right of ...
3
votes
1answer
87 views

Are we going to get a Protected Date field in Question responses?

Now that questions can be marked protected, will this info be available via the API?
3
votes
1answer
51 views

After a throttle violation, could the error message include the time when the block will be lifted?

I got my first throttle violation error after running in jsfiddle some example code given to me by a library author in response to a question of mine about how to use their library. This is the error ...
3
votes
1answer
65 views

Self-mined Badge Progress via 2.0+ API

Badge Progress as a topic has had many questions, and some closed. Before downvoting or closing, please consider how this question might be different. First, what's the the latest official answer of ...
3
votes
1answer
28 views

Could the /tags API return minimal information about synonyms?

It would be very helpful if the /tags API could provide at least a bare minimum of information about tag synonyms. Either: Number of synonyms the tag has, if any. Or a true/false flag for tags which ...
3
votes
1answer
116 views

Will there be another contest when Stack API 2.0 is close to release?

Considering Stack API 2.0 will probably focus a lot on administration and write features, I think it would be a good idea to have another contest.
3
votes
1answer
57 views

Can we get write access to user favorites?

I'd like users of my app to be able to add questions to their favourites. Will this be added to the API as an authenticated call?
3
votes
2answers
52 views

Is it possible to get daily reputation change for a user via the API?

I'm trying to fetch a user's daily reputation change history for a project that's still early in the planning stages. I've been trying to use the "reputation" endpoint, but it seems like I can query ...
3
votes
1answer
136 views

Provide a streaming API instead of forcing API users to poll

I've written an IRC bot that can notify channels when new questions with a certain tag are posted. However, currently I'm polling the URL ...
3
votes
1answer
84 views

site twitter acounts on stackauth.com/sites

Would it be possible to add references to the site twitter accounts in the site listing on stackauth? If your wondering what I'm talking about: ...
3
votes
1answer
82 views

Answers information with tags

I am trying to chart the up votes on answers received by a user by tags. Something like: I am running into the same situation as this question: How to filter getAnswersForUser by tag?. If the ...
3
votes
1answer
130 views

Please add tags to answers

When querying any API method which returns answers (/users/ids/answers, /answers/ids, etc.) the result does not include the tag information for the related question. The API does not support ...
3
votes
1answer
139 views

Central Login place

The Issue Currently, tracking yourself in an application is not that user friendly, you have to search for your username. Usernames are not unique, there are many Jonathan's for example When an ...
3
votes
1answer
105 views

AND searching for tags?

I am using the search api to search for questions that are tagged with "tags" and not with "tags". However I have noticed that searching for tags is an OR search. The questions search for tags is an ...
3
votes
1answer
80 views

Access to /users/recent/ (Recent Activity) through the API

Would it be possible to have access to a user Recent Activity? I know that this is not a public information on the website, but I think that most part is public. I only see one Activity that should ...
3
votes
1answer
74 views

Add moderator-only flag to tags API?

Currently there is no way to distinguish between normal and moderator only tags.
3
votes
2answers
118 views

Could there be a way to check stats on a key?

I think it would be very helpful if there was a way to get statistics about your own API keys. That way, you could find out which IP addresses were using your app the most. (And if one was abusing ...
3
votes
0answers
18 views

More Global Methods?

Consider the following scenario: I need to retrieve a list of the latest questions asked on three different Stack Exchange sites. I throw together an application that hits up the following routes: ...
3
votes
0answers
45 views

Is it OK to have a test account for a developing client?

I'm currently trying to implement an agorava component for Stackoverflow, and for testing purpose, i would like to create a test account, which would have one question asked, and would maybe send ...
3
votes
0answers
38 views

2.0 API get votes

I've been searching the 2.0 API for a list of my own (up and down) votes. I don't see them in the API. I don't think this is a prohibitively resource intensive query or that it can be used to ...
3
votes
1answer
66 views

Is there going to be an API for the Careers site?

Is there going to be an API for access to the careers site? I could understand that it would be different to the rest of the Stack Exchange APIs, but I could see that it could be useful for use cases ...
3
votes
0answers
54 views

When will the API allow posting of questions and answers

I am planning on building a client for the Stack Exchange Sites, but it seems you cannot post any information via the API yet. Is this going to happen at any time soon? It seems a pain to force users ...
3
votes
0answers
19 views

Filtering tags should provide exact matches at top

Take this query for example: http://api.stackoverflow.com/1.1/tags?pagesize=25&filter=ip No where is there the valid tag [ip]. It is further down the page. This is quite annoying when searching ...