A question about how the API returns questions.

learn more… | top users | synonyms

6
votes
1answer
199 views

Why these questions do not have a title?

Hitting the following /questions route: http://api.stackoverflow.com/1.0/questions/74?pagesize=1&page=1 the endpoint returns this JSON data: { "total": 1, "page": 1, "pagesize": 1, ...
3
votes
1answer
89 views

Problem getting a users questions within a date range

I'm having a problem returning a list of users questions within a given timespan. I understand that the documentation ( http://api.stackoverflow.com/0.8/help/method?method=users/{id}/questions ) that ...
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
0answers
248 views

Newest unaswered by tags

Screenshot About Often, when I was looking for questions to answer on StackOverflow, I would go through newest unanswered questions and look for those that had one of my favorite tags. The “my ...
2
votes
1answer
184 views

Add 'linked' question data to the API

SE sites show linked questions on the right column. It would be great to add an array of ids to the question response called 'linked'. Example Linked Question
2
votes
1answer
110 views

How to check if a given question is changed

What is the fastest way to check if a question is changed using the API calls? For my purpose (a cache), a question is considered changed if: A new comment is added to the question or to any of its ...