/questions
Summary
Gets question summary information.Parameters
answers (optional)
- When "true", the answers to a question will be returned
- boolean
body (optional)
- When "true", a post's body will be included in the response.
- boolean
comments (optional)
- When "true", any comments on a post will be included in the response.
- boolean
fromdate (optional)
- Unix timestamp of the minimum creation date on a returned item.
- unix epoch date, range [0, 253,402,300,799]
jsonp (optional)
- Just so we can serialize it for caching purposes
- string
max (optional)
- Maximum of the range to include in the response according to the current sort.
- integer or unix epoch date
min (optional)
- Minimum of the range to include in the response according to the current sort.
- integer or unix epoch date
order (optional)
- How the current sort should be ordered.
- one of desc (default), or asc
page (optional)
- The pagination offset for the current collection. Affected by the specified pagesize.
- 32-bit signed integer
pagesize (optional)
- The number of collection results to display during pagination. Should be between 0 and 100 inclusive.
- 32-bit signed integer
sort (optional)
- How a collection should be sorted.
- one of activity (default), votes, creation, featured, hot, week, or month
tagged (optional)
- Semicolon delimited list of tags questions must have
- string
todate (optional)
- Unix timestamp of the maximum creation date on a returned item.
- unix epoch date, range [0, 253,402,300,799]
Returns
{
"total": {
"description": "total number of items in this sequence",
"values": "32-bit integer, range [0, 2,147,483,647]",
"optional": false
},
"page": {
"description": "page of the total collection returned",
"values": "32-bit integer, range [1, 2,147,483,647]",
"optional": false
},
"pagesize": {
"description": "size of each page returned from the collection",
"values": "32-bit integer, range [0, 100]",
"optional": false
},
"questions": [
{
"tags": [
{
"values": "string"
}
],
"answer_count": {
"description": "number of answer on this question",
"values": "32-bit signed integer",
"optional": false
},
"answers": [
{
"answer_id": {
"description": "id of the answer",
"values": "32-bit signed integer",
"optional": false
},
"accepted": {
"description": "whether this answer is the accepted answer on its question",
"values": "boolean",
"optional": false
},
"answer_comments_url": {
"description": "a link to the method that returns comments on this answer",
"values": "string",
"optional": false
},
"question_id": {
"description": "id of the question this post is or is on",
"values": "32-bit signed integer",
"optional": false
},
"locked_date": {
"description": "date this question was locked",
"values": "unix epoch date, range [0, 253,402,300,799]",
"optional": true
},
"owner": {
"user_id": {
"description": "id of the user",
"values": "32-bit signed integer",
"optional": false
},
"user_type": {
"description": "type of the user",
"values": "one of , anonymous, unregistered, registered, or moderator",
"optional": false
},
"display_name": {
"description": "displayable name of the user",
"values": "string",
"optional": false,
"suggested_buffer_size": 40
},
"reputation": {
"description": "reputation of the user",
"values": "32-bit signed integer",
"optional": false
},
"email_hash": {
"description": "email hash, suitable for fetching a gravatar",
"values": "string",
"optional": false,
"suggested_buffer_size": 32
}
},
"creation_date": {
"description": "date this post was created",
"values": "unix epoch date, range [0, 253,402,300,799]",
"optional": false
},
"last_edit_date": {
"description": "last time this post was edited",
"values": "unix epoch date, range [0, 253,402,300,799]",
"optional": true
},
"last_activity_date": {
"description": "last time this post had any activity",
"values": "unix epoch date, range [0, 253,402,300,799]",
"optional": true
},
"up_vote_count": {
"description": "number of up votes on this post",
"values": "32-bit signed integer",
"optional": false
},
"down_vote_count": {
"description": "number of down votes on this post",
"values": "32-bit signed integer",
"optional": false
},
"view_count": {
"description": "number of times this post has been viewed",
"values": "32-bit signed integer",
"optional": false
},
"score": {
"description": "score of this post",
"values": "32-bit signed integer",
"optional": false
},
"community_owned": {
"description": "whether this post is community owned",
"values": "boolean",
"optional": false
},
"title": {
"description": "title of this post, in plaintext",
"values": "string",
"optional": false,
"suggested_buffer_size": 200
},
"body": {
"description": "body of this post, rendered as HTML",
"values": "string",
"optional": true,
"suggested_buffer_size": 30000
},
"comments": [
{
"comment_id": {
"description": "id of the comment",
"values": "32-bit signed integer",
"optional": false
},
"creation_date": {
"description": "creation date of the comment",
"values": "unix epoch date, range [0, 253,402,300,799]",
"optional": false
},
"owner": {
"user_id": {
"description": "id of the user",
"values": "32-bit signed integer",
"optional": false
},
"user_type": {
"description": "type of the user",
"values": "one of , anonymous, unregistered, registered, or moderator",
"optional": false
},
"display_name": {
"description": "displayable name of the user",
"values": "string",
"optional": false,
"suggested_buffer_size": 40
},
"reputation": {
"description": "reputation of the user",
"values": "32-bit signed integer",
"optional": false
},
"email_hash": {
"description": "email hash, suitable for fetching a gravatar",
"values": "string",
"optional": false,
"suggested_buffer_size": 32
}
},
"reply_to_user": {
"user_id": {
"description": "id of the user",
"values": "32-bit signed integer",
"optional": false
},
"user_type": {
"description": "type of the user",
"values": "one of , anonymous, unregistered, registered, or moderator",
"optional": false
},
"display_name": {
"description": "displayable name of the user",
"values": "string",
"optional": false,
"suggested_buffer_size": 40
},
"reputation": {
"description": "reputation of the user",
"values": "32-bit signed integer",
"optional": false
},
"email_hash": {
"description": "email hash, suitable for fetching a gravatar",
"values": "string",
"optional": false,
"suggested_buffer_size": 32
}
},
"post_id": {
"description": "post this comment is on",
"values": "32-bit signed integer",
"optional": false
},
"post_type": {
"description": "type of post this comment is on; one of question or answer",
"values": "one of question, or answer",
"optional": false
},
"score": {
"description": "number of upvotes on this comment",
"values": "32-bit signed integer",
"optional": false
},
"edit_count": {
"description": "number of times this comment has been edited",
"values": "32-bit signed integer",
"optional": true
},
"body": {
"description": "body of the comment, rendered as HTML",
"values": "string",
"optional": false,
"suggested_buffer_size": 600
}
}
]
}
],
"accepted_answer_id": {
"description": "id of the accepted answer",
"values": "32-bit signed integer",
"optional": true
},
"favorite_count": {
"description": "number of users who have favorited this question",
"values": "32-bit signed integer",
"optional": false
},
"bounty_closes_date": {
"description": "date the bounty closes on this question",
"values": "unix epoch date, range [0, 253,402,300,799]",
"optional": true
},
"bounty_amount": {
"description": "amount of rep the bounty is worth",
"values": "32-bit signed integer",
"optional": true
},
"closed_date": {
"description": "date this question was closed",
"values": "unix epoch date, range [0, 253,402,300,799]",
"optional": true
},
"closed_reason": {
"description": "why this question was closed",
"values": "string",
"optional": true,
"suggested_buffer_size": 500
},
"protected_date": {
"description": "date this question was protected",
"values": "unix epoch date, range [0, 253,402,300,799]",
"optional": true
},
"migrated": {
"new_question_id": {
"description": "id of the question this one was migrated to",
"values": "32-bit signed integer",
"optional": false
},
"to_site": {
"name": {
"description": "name of the site",
"values": "string",
"optional": false
},
"logo_url": {
"description": "absolute path to the logo for the site",
"values": "string",
"optional": false
},
"api_endpoint": {
"description": "absolute path to the api endpoint for the site, sans the version string",
"values": "string",
"optional": false
},
"site_url": {
"description": "absolute path to the front page of the site",
"values": "string",
"optional": false
},
"description": {
"description": "description of the site, suitable for display to a user",
"values": "string",
"optional": false
},
"icon_url": {
"description": "absolute path to an icon suitable for representing the site, it is a consumers responsibility to scale",
"values": "string",
"optional": false
},
"aliases": [
{
"values": "string"
}
],
"state": {
"description": "state of this site.",
"values": "one of normal, closed_beta, open_beta, or linked_meta",
"optional": false
},
"styling": {
"link_color": {
"description": "color of links, as a CSS style color value",
"values": "string",
"optional": false
},
"tag_foreground_color": {
"description": "foreground color of tags, as a CSS style color value",
"values": "string",
"optional": false
},
"tag_background_color": {
"description": "background/fill color of tags, as a CSS style color value",
"values": "string",
"optional": false
}
}
},
"on_date": {
"description": "the date the migration occurred",
"values": "unix epoch date, range [0, 253,402,300,799]",
"optional": false
}
},
"question_timeline_url": {
"description": "link to the timeline of this question",
"values": "string",
"optional": false
},
"question_comments_url": {
"description": "link to the comments on this question",
"values": "string",
"optional": false
},
"question_answers_url": {
"description": "link to the answers on this question",
"values": "string",
"optional": false
},
"question_id": {
"description": "id of the question this post is or is on",
"values": "32-bit signed integer",
"optional": false
},
"locked_date": {
"description": "date this question was locked",
"values": "unix epoch date, range [0, 253,402,300,799]",
"optional": true
},
"owner": {
"user_id": {
"description": "id of the user",
"values": "32-bit signed integer",
"optional": false
},
"user_type": {
"description": "type of the user",
"values": "one of , anonymous, unregistered, registered, or moderator",
"optional": false
},
"display_name": {
"description": "displayable name of the user",
"values": "string",
"optional": false,
"suggested_buffer_size": 40
},
"reputation": {
"description": "reputation of the user",
"values": "32-bit signed integer",
"optional": false
},
"email_hash": {
"description": "email hash, suitable for fetching a gravatar",
"values": "string",
"optional": false,
"suggested_buffer_size": 32
}
},
"creation_date": {
"description": "date this post was created",
"values": "unix epoch date, range [0, 253,402,300,799]",
"optional": false
},
"last_edit_date": {
"description": "last time this post was edited",
"values": "unix epoch date, range [0, 253,402,300,799]",
"optional": true
},
"last_activity_date": {
"description": "last time this post had any activity",
"values": "unix epoch date, range [0, 253,402,300,799]",
"optional": true
},
"up_vote_count": {
"description": "number of up votes on this post",
"values": "32-bit signed integer",
"optional": false
},
"down_vote_count": {
"description": "number of down votes on this post",
"values": "32-bit signed integer",
"optional": false
},
"view_count": {
"description": "number of times this post has been viewed",
"values": "32-bit signed integer",
"optional": false
},
"score": {
"description": "score of this post",
"values": "32-bit signed integer",
"optional": false
},
"community_owned": {
"description": "whether this post is community owned",
"values": "boolean",
"optional": false
},
"title": {
"description": "title of this post, in plaintext",
"values": "string",
"optional": false,
"suggested_buffer_size": 200
},
"body": {
"description": "body of this post, rendered as HTML",
"values": "string",
"optional": true,
"suggested_buffer_size": 30000
},
"comments": [
{
"comment_id": {
"description": "id of the comment",
"values": "32-bit signed integer",
"optional": false
},
"creation_date": {
"description": "creation date of the comment",
"values": "unix epoch date, range [0, 253,402,300,799]",
"optional": false
},
"owner": {
"user_id": {
"description": "id of the user",
"values": "32-bit signed integer",
"optional": false
},
"user_type": {
"description": "type of the user",
"values": "one of , anonymous, unregistered, registered, or moderator",
"optional": false
},
"display_name": {
"description": "displayable name of the user",
"values": "string",
"optional": false,
"suggested_buffer_size": 40
},
"reputation": {
"description": "reputation of the user",
"values": "32-bit signed integer",
"optional": false
},
"email_hash": {
"description": "email hash, suitable for fetching a gravatar",
"values": "string",
"optional": false,
"suggested_buffer_size": 32
}
},
"reply_to_user": {
"user_id": {
"description": "id of the user",
"values": "32-bit signed integer",
"optional": false
},
"user_type": {
"description": "type of the user",
"values": "one of , anonymous, unregistered, registered, or moderator",
"optional": false
},
"display_name": {
"description": "displayable name of the user",
"values": "string",
"optional": false,
"suggested_buffer_size": 40
},
"reputation": {
"description": "reputation of the user",
"values": "32-bit signed integer",
"optional": false
},
"email_hash": {
"description": "email hash, suitable for fetching a gravatar",
"values": "string",
"optional": false,
"suggested_buffer_size": 32
}
},
"post_id": {
"description": "post this comment is on",
"values": "32-bit signed integer",
"optional": false
},
"post_type": {
"description": "type of post this comment is on; one of question or answer",
"values": "one of question, or answer",
"optional": false
},
"score": {
"description": "number of upvotes on this comment",
"values": "32-bit signed integer",
"optional": false
},
"edit_count": {
"description": "number of times this comment has been edited",
"values": "32-bit signed integer",
"optional": true
},
"body": {
"description": "body of the comment, rendered as HTML",
"values": "string",
"optional": false,
"suggested_buffer_size": 600
}
}
]
}
]
}