This tag indicates a proposal for a new feature for the Stack Exchange API, or a change to an existing feature.
0
votes
1answer
14 views
Inbox item not marked as read after viewing
Accessing inbox items using the following url:
/me/inbox
Unread inbox items remain unread (is_unread = true) even after that specific item has been read using the API (v2.1).
The items are marked ...
0
votes
0answers
13 views
Where are my comments [migrated]
I do get notified on Answers and comments (if addressed to me), but since I am quite active over multiple sites, how about been notified on all follow up comments in the OP or Answers where I gave a ...
1
vote
0answers
34 views
Attribute error while using the stackoverflow api wrapper for python on IDLE
This is the code that I use to access Stack Overflow:
from stackexchange import Site, StackOverflow
so = stackexchange.StackOverflow()
for q in so.questions(pagesize=50):
print q.title
It runs ...
2
votes
0answers
17 views
How do I get the no. of upvotes a person has received for a particular tag?
I need the list of users who have more than 10K reputation and then among those users I need to see which user has how many up-votes for each tag. I don't there is a direct query that will give me ...
1
vote
0answers
38 views
Please differentiate between meta sites for beta versus normal sites, in the /sites method
Currently, in the /sites method, a site can have a site_state of: normal, open_beta, closed_beta, or linked_meta.
This makes it easy to tell if a main site is in beta or not. But it becomes a 2 or 3 ...
0
votes
0answers
20 views
Get current inbox item types and notification types
The pages for inbox_item and notification contain the following:
Be aware that the types of items returned by this method are subject
to change at any time. In particular, new types may be ...
2
votes
1answer
43 views
How about linking Stack Exchange to IFTTT?
Why is there no channel for Stack Overflow on IFTTT?
It would be great if I can mash up the Stack Exchange website with other web-based services like Google Reader or GMail, receive a SMS or ...
3
votes
0answers
29 views
Allow post type to optionally return title field
Currently, it's possible to get the title field from the question type returned by /questions/{ids} and from the answer type returned by /answers/{ids}, using the appropriate filters.
Unfortunately, ...
1
vote
1answer
18 views
Create a question Bookmarket
I want to build a small bookmarklet which can take the selected text and send in to stackoverflow to create a new post containing the selected text.
Also get a unique id or something that helps to ...
1
vote
1answer
31 views
How do I search for a specific question whose url I know?
I was wondering if there is a feature in the API that I could use to retrieve various features of a question on the Stack Exchange network when I know the actual URL of the question.
6
votes
0answers
37 views
Get favorited tags of user
This was requested in 1 and declined because of a missing authentication method.
Now that authentication is in place, is there a way to retrieve the favorited tags of a user (myself)?
1
vote
1answer
28 views
Is there a way (or app) to get realtime updates of new questions with a given tag?
According to StackExchange API not realtime?, the API does not return results in realtime, but has 1 minute delay for the same query.
Is there a system or an app that delivers new questions in ...
1
vote
1answer
33 views
Are there any API's to get details from careers stack exchange site?
Planning to create a blog widget which shows data from careers page.
This can be done using an iframe but was looking at other avenues as well.
0
votes
0answers
10 views
How to tell if a given tag name is a synonym?
I've found in one of my projects that I sometimes have a string that I need to check as to whether it's a tag or a tag synonym.
To check if it's a tag synonym is easy using /tags/{tags}/info
I can ...
0
votes
0answers
13 views
Is there any way to access the SE Site Advertisement backgrounds?
I really like the background images for inter site advertisement:
etc,.
Is there a way to have easy access to these? I'm hoping to use them within my application.
2
votes
0answers
12 views
Get tags from question through an answer
I'd like to use this function: http://api.stackexchange.com/docs/answers-on-users to get a list of answers from a user.
The key element that I need though is what the question was tagged as, is there ...
0
votes
0answers
46 views
WordPress Plugin to Display SE Activity?
Is there a WordPress plugin that will display a users activity from any of the StackExchange sites (i.e. display their answers and questions, etc.)?
If there isn't a WordPress plugin for this, is ...
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:
...
0
votes
0answers
19 views
Could we add “has_tag_wiki” and “has_tag_wiki_excerpt” flags to the tag info API?
Currently the only way to check for existence of tags wikis and tag wiki excerpts is to fetch their actual contents using the tags wikis API
/tags/{tags}/wikis
But this returns the entire text ...
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 ...
0
votes
0answers
33 views
Does Zend_Rest_Client support traditional object API work e.g. PUT an object, GET and object, POST an object [closed]
I need to know if we can use Zend Framework to power a REST API?
Does Zend_Rest_Client support traditional object API work e.g.
PUT an object,
GET and object,
POST an object
Most REST API's ...
1
vote
1answer
42 views
Installing user scripts on site?
I was thinking the other day, if it would be possible to allow users to install scripts to the website, so that they can be used on browsers that don't support user scripts, or don't have the ability ...
1
vote
0answers
37 views
The applications listed on a user's apps tab are a little crowded.
As you can see, there is a very small amount of space between each of the applications in the "apps" tab of my user profile. This makes it a little bit more difficult to read because the space between ...
1
vote
0answers
23 views
How to get network profile username?
I was thinking I could just get the username from the response of /users/{ids}/associated (where {ids} is the not-site-specific id). But then realised that it returns only network_user (even though we ...
5
votes
1answer
79 views
Can we have the display_name field in the /me/associated route?
I'm reading the Authentication documentation and I've noticed that the /me/associated route returns fields like user_id, badges, reputation but not the display_name, even specifying a custom Filter.
...
0
votes
1answer
46 views
Add message ID to inbox items
Feature request: The inbox item object should include a message_id field. The ID should identify inbox messages uniquely within StackExchange.
1
vote
0answers
15 views
Why are Meta sites' “site_state” = “linked_meta”?
In 2.0 there are the site_type and site_state fields. On Meta sites these fields give the same information, site_type = meta_site and site_state = linked_meta
Instead it would be more useful if ...
7
votes
0answers
337 views
Firehose JSON streaming event service
Code Snippet
Using curl:
$ curl http://stackoverflow.hewgill.com:8080/firehose/stackoverflow
or, in a browser, http://stackoverflow.hewgill.com:8080/firehose/stackoverflow.
About
This ...
2
votes
0answers
14 views
Request to support “tagged” on more endpoints
(I realize this is likely to be status-deferred for now, but I'm quite likely to forget if I don't ask it now :)
The /questions endpoint supports a "tagged" parameter which I find quite useful. ...
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 ...
0
votes
1answer
26 views
WebSockets in API
Now that the actual sites have updates for Questions and Inbox with WebSockets. Can we get access to these via the API? If they are stable enough for the sits, then surely they for the API?
2
votes
1answer
36 views
Where can I request an API key in the docs?
Can you mention the possibility of requesting an API key in the docs? It was displayed for the 1.0 API.
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 ...
7
votes
1answer
90 views
Add close-vote information to the questions object
Would it be possible to add close/reopen vote information to the questions object?
For example, you usually see something along the lines of:
close (3)
when a question has three (current) ...
2
votes
1answer
28 views
Is there a way to get the edit URL for a tag wiki from the API?
I've been playing with a little webapp for tags of a certain kind for travel.SE (current pre-alpha version gist on github).
One thing I would like to do is add links for the various tag-related ...
3
votes
1answer
51 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 ...
2
votes
0answers
12 views
Greatest Hit questions data/route in API
Can we get access to the greatest hits functionality of the websites?
Something like /questions/hits, and with an id (as in user ID) parameter to match the website.
Maybe in version 2.1? This data ...
1
vote
1answer
57 views
Sorting the event stream
It seems like the data returned from the /events endpoint is flawed by being returned in descending order. For example:
{
"items": [
{
"event_type": "comment_posted",
"event_id": ...
1
vote
0answers
16 views
Hot questons (network)
Would it be possible to get an API method for the stackexchange hot questions list?
Something like an official version of this: http://stackexchange.com/genuwine
Second to this would be knowing how ...
2
votes
1answer
31 views
Possible to return newest questions with a certain tag?
I am not finding a way to return a list of new questions by tag with the new stack exchange api.
Am I missing something or is this not available? If this is not available, I most certainly request ...
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?
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 ...
1
vote
1answer
34 views
Is there any way we could have more information about tags in /questions?
In the /tags route, the following information is returned for a specific tag:
{
"name": "c#",
"count": 262613,
"is_required": false,
"is_moderator_only": false,
"has_synonyms": true
}
...
0
votes
1answer
23 views
Add last_access_date field to the shallow_user object
Would it be possible to add the last_access_date field to the shallow_user object? I presume this corresponds to the seen field when visiting someone's profile.
My reasoning is that it saves the ...
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%.
...
2
votes
1answer
28 views
Site categories in API?
Would it be possible to have a category field added to the site object. Eg Technology, Culture, etc. The sites seem to already have categories, as you can see on this page: ...
2
votes
1answer
31 views
Can 'api_site_parameter' be added to related_site?
It would be great if the related_site type contained api_site_parameter. I realize that you probably don't want to clutter up related_site with a lot of unnecessary fields, but I think it makes sense ...
2
votes
1answer
23 views
integer and decimal are used to describe fields in return types but not in method parameters
Integer and Decimal designations are useful in creating an accurate model of API methods and types.
These specific 'number' subtypes are used when describing types but the method parameter lists all ...
0
votes
1answer
24 views
Relevance value on /similar route
Given that the /similar method can be sorted by relevance there must be a numeric rank for each question.
Would it be possible to have access to the value? Off by default, but can be enabled by using ...
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 ...

