The question you're asking is designed to solicit opinions or best-practices on a particular topic, with the goal of reaching community consensus.

learn more… | top users | synonyms

1
vote
1answer
122 views

Can I Drive the Area51 Process via the SO API?

I am planning a new webapp. I want to use an SE instance to power the community feature of the new webapp. Since all SE sites must pass through the Area51 process, I would like to know if I could ...
1
vote
1answer
104 views

How to calculate rank; local to site and globally?

With the available data points, how would you rank users, both on a site basis as well as globally? Right now I am simply sorting on reputation desc, creation_date, user_id, display_name. This ...
5
votes
0answers
157 views

Promoting your [app]s - advertising contest proposal

I've proposed on Meta a contest for promoting StackApps applications developed with the API. Please consider to leave your comments over there. (Bounty +250)
5
votes
4answers
267 views

Application marketing ideas

As I prepare to ship v1.1 of Six to Eight, I'm curious as to what ideas other people might have for Stack Exchange app marketing. How do we reach Stack Exchange users without either annoying them with ...
0
votes
1answer
120 views

Truly unanswered questions

Clicking "unanswered" shows you questions w/o ACCEPTED (upvoted) answers, but has someone written a script/site that shows you questions w/ NO answers, upvoted or otherwise? It seems easy to code ...
1
vote
0answers
54 views

Maximum tags for a question on any SE site

Is the maximum tags for all SE sites (and those in the future) 5?
1
vote
2answers
167 views

App that tracks a specific tag

I'm looking for a software like StackTracker that allows to track a specific tag on StackExchange sites. Do you know somes? Thanks!
2
votes
1answer
110 views

Why is there no /answers route?

As I was answering this question, http://meta.stackoverflow.com/questions/66403/find-answers-with-max-upvotes, I found myself wondering, quite late in the game, why there is not an /answers route that ...
0
votes
2answers
90 views

site status: Closed_beta

Will stackauth ever show a site as closed_beta? Is there much point if it's closed?
0
votes
1answer
55 views

Delay from editing question to seeing the edit in API

Sure a delay of about a minute is not much, but when you consider that if you post a question the API sees it immediately, and often something using the API is ahead of the stackoverflow site, then it ...
1
vote
2answers
112 views

How to access the text of the page returned using curl?

This is what curl http://api.stackoverflow.com/1.0/users/113124/favorites returns ...
2
votes
2answers
64 views

How can I see the next page of favorites using the SO API?

http://api.stackoverflow.com/1.0/users/113124/favorites only shows me 30 favourites. How can I see the rest?
8
votes
4answers
483 views

What ideas do you have for the API?

Having created 3 applications and a wrapper for the API, I am beginning to run out of ideas for things to create. So here is where you come in... If you can come up with a good idea for an app (and I ...
2
votes
2answers
116 views

Do we have a C++ wrapper library for SO API?

I wanted to develop a SO app, and I have no prior web programming experience. I know C, C++ and a bit of Perl. Is there an wrapper for the API in one of these languages? If not, what do you ...
2
votes
1answer
81 views

Error Code when API Key Limit exceeds

What will the error code be generated when API Key Limit exceeds? I need that because I have to handle this error in my application.
4
votes
2answers
604 views

How to protect API Keys?

    I want to develop an Open Source Project with Stack Exchange API. So I have to publish the API key there. But a single IP address can only make a certain number of API requests ...
4
votes
2answers
295 views

Are there more implementation samples with Stack Exchange API 1.0? How could this API useful to me or my users?

I'm looking at how the Stack Exchange API could be useful in my site. Is it fair to say I am in read-only mode when I search for results? What is some envisioned use-case scenarios for this? I ...
5
votes
2answers
124 views

Will Stack Exchange hot questions be provided by the API?

I would like to add an "hot questions" section to StackPrinter that will list the hottest StackExchange questions provided here. I'm going to fetch those questions using the site's RSS adding details ...
8
votes
1answer
219 views

Standardized set of sort icons?

Can we (anyone who is interested) create a "standard" set of icons that represent the various sorting methods available? That way, we'll have a set of universally recognized icons. That means we'll ...
3
votes
2answers
201 views

What am I allowed/not permitted to do with the API?

I have a site that will offer technical help and assistance for a certain niche of computer users. I can either host my own forums, or tie in with stack... but I want to be able to make money off it ...
1
vote
1answer
131 views

Seamless authentication between my site and StackOverflow

I'm planning on using WS-Trust and SAML to authenticate users to my site and haven't really explored other options. What should I learn (or do) to enable a mostly seamless end user transition from my ...
2
votes
1answer
82 views

App to monitor a beta site for all questions

The only notification app I could find that lets you monitor all questions on a site is soapi-notify, but it doesn't let you monitor beta sites. Is there an application that will let me monitor all ...
2
votes
4answers
233 views

Is it really worth to (implicitly) discourage documentation of API/library usage nowadays already?

Update: Kevin provided an answer, which, while adding something of value to the three related questions together (by naming the originating concern eventually), actually does not apply to the ...
1
vote
1answer
101 views

Helping people is 'noise or pointless'?

How to batch up multiple id requests to maximize economy and still avoid (400) Bad Request [closed] closed as noise or pointless by Kevin Montrose♦ Aug 16 at 23:15 This question does not add ...
4
votes
2answers
130 views

Simple Activity Monitor - For Educational Purposes only.

This Soapi.JS script, if abused is likely to provoke frowns from those whom you would like to see smiles. Note: the dataset is only valid if the entire user base is pulled, and on just about any ...
8
votes
1answer
304 views

How to batch up multiple id requests to maximize economy and still avoid (400) Bad Request [closed]

Update: All of our grumblings and the unbearable beauty of our workarounds resulted in this issue being fixed last week. You can now send 100 id in one request and receive 100 responses. See ...
4
votes
0answers
3k views

How to call the API via JSONP in Plain Old JavaScript

This tips demonstrates how to call the API in JavaScript without the need of jQuery or other frameworks. In a lot of cases you will find that the JSONP implementations provided in various frameworks ...
2
votes
0answers
284 views

How to retrieve paged API results in C# and Silverlight

In this tip we are going to leverage the SimpleRequestFactory and gather a multipage response. Lets pull the first 5 pages of 100 users on stackapps.com. NOTE: for Silverlight, substitute ...
5
votes
1answer
2k views

How to convert unix timestamp to .NET DateTime

Hi, What is the format of the "creation_date" that is returned from a search of questions? I've been looking all over here and can't figure it out. I want to convert it to a regular DateTime object. ...
2
votes
8answers
517 views

How to format reputation numbers similar to Stack Exchange sites.

UPDATE For JavaScript, see CMS's implementation below. It is much more elegant than the one i provide in the body of this Q. // formats a number similar to the way stack exchange sites ...
6
votes
3answers
447 views

Getting your [app] to show up in the AppStore

We've got a couple of [app]s out there for various iProducts: GeeQe StackUp Six to Eight But searching for "Stack Overflow" or "Stack Exchange" only finds StackUp (of the above) in the AppStore*. ...
14
votes
0answers
590 views

What is SOAPI and why should I care?

Let me answer the last question first: Why should you care? You shouldn't care unless you are a .NET or JavaScript coder who can leverage robust client access libraries for the Stack Exchange API ...
1
vote
2answers
228 views

App devs - Would you use something like this if it were available?

Update: So it was written, so it is done. Go see the real deal! var questionWithStuff = ctx // soapi context .Official // convenience properties for known sites .StackOverflow ...
2
votes
1answer
122 views

How to monitor answers/comments on all of my multiple Stack Exchange accounts?

I am active on 5 Stack Exchange websites, and I would like to be notified when there is a new comment/answer on any of them, rather than discovering it a few days late. Is there such a tool? If it ...
0
votes
1answer
60 views

SOFU/ SE Reputation Aggregator

Is there an app that aggregates all my SOFU/SE reputation, badges in one single place? I'm going to love it.
7
votes
1answer
159 views

The API v0.9 2010.06.24.002 as seen by SOAPI

Stack Overflow API as seen by the SOAPI parser and code generator: With the API freeze, changes to the vast API should slow to a trickle, making manual maintenance possible. At this milestone, I have ...
9
votes
3answers
157 views

Should we adjust the format of the dev-tip questions early on?

Update: I've 'averaged' the few answers and comments and included the respective result below each question (all results are executed accordingly for some time already in most dev-tip posts). The ...
2
votes
3answers
107 views

Getting required upvotes for apps tab is too dependant on release date

I have recently released a chrome extension and it is at present getting about 3 upvotes a week. Not as many as hoped, but still not bad. However, this may not be enough to get it into the apps tab ...
2
votes
4answers
131 views

How to order /sites result in a user friendly way to use it in our apps.

Since ordering of /sites is not guaranteed, how do i effectively order sites in a user-friendly way? General requirements: Trilogy must stay on the top of the list ...
1
vote
1answer
138 views

Can we add a creation_date to the /sites method?

I think we really need a way to determine when one of the new sites went live so that they can be ordered by date. Something like: { "name": "Gaming Meta", "logo_url": ...
1
vote
1answer
73 views

Accepted answer on questions/id/answers method sorted by votes

Looking at this stackoverflow question: http://stackoverflow.com/questions/3012488?tab=votes#tab-top when sort is by votes, the accepted_answer is always on top regardless of answer's upvotes. ...
6
votes
2answers
183 views

Suggestion : a site to access all of our sites questions/reputation

Hi, being a quite active Stackoverflow sites galaxy users, I become to be quite tired of always switching from one site to another. Wouldn't it be cool to have a website that gives me an aggregated ...
2
votes
3answers
2k views

iStack (iPhone app for Stackoverflow sites) - suggestions for UI

Well there's a much better and complete iphone app called six to eight by Adam Wright here: http://stackapps.com/questions/623/six-to-eight-an-iphone-client (NB: this post did have an app but well, ...
5
votes
2answers
193 views

What is the Errors endpoint used for?

I am trying to figure out what the errors endpoint is used for, so I can I can implement it in my API. I have been trying things like: http://api.stackoverflow.com/0.8/errors/404 ...
0
votes
1answer
70 views

help page suggestion: /questions/tagged/{tags} - tags param clarification

Method removed it is not clear what a 'list' of tags looks like. does this parameter follow the semicolon seperated list format of the id param? is it a comma separated list?
2
votes
2answers
140 views

Timeline for v2.0 of the API?

Since v1.0 is now finalized, I thought I'd inquire about v2.0. I'm guessing it will be a few weeks before you even start planning it. Can you give us a long term estimate of when the private beta ...
5
votes
0answers
82 views

Version 1.0 of the API seems to be here!

It looks like v1.0 of the API is here now! I waited a few minutes for an official announcement, but none came - so here it is! Thanks a million to the team for putting this together!
3
votes
2answers
169 views

What does min and max mean when sort is “activity” or “hot”?

Does they mean anything actually? There was an "issue" when you needed to add min=0 to queries to actually get the answers instead of nothing. Just checked that this is not the case anymore, but was ...
5
votes
0answers
352 views

How to use min/max with sort

While some sort values make inference of the expected min/max values less than ambiguous, others do not. Pending formal documentation, I hope this can serve as an informal reference. Aggregated sort ...
2
votes
1answer
132 views

What to do with API keys if our project is open-source?

Is it OK to share the key in our source? Someone could just pick it up and use it for other purposes.