/questions/{id}/answers
Summary
Gets any answers to the question in 'id'.Parameters
id
- A single primary key identifier or a vectorized, semicolon-delimited list of identifiers.
- string
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), views, creation, or votes
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
},
"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
}
}
]
}
]
}