stackoverflow_question_details
Retrieve detailed information about a Stack Overflow question, including answers and optional comments, using the specified question ID. Essential for developers and researchers seeking in-depth technical insights.
Instructions
Get detailed information about a specific Stack Overflow question including answers
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeAnswers | No | Include answers in the response | |
includeComments | No | Include comments in the response | |
questionId | Yes | Stack Overflow question ID |
Input Schema (JSON Schema)
{
"properties": {
"includeAnswers": {
"default": true,
"description": "Include answers in the response",
"type": "boolean"
},
"includeComments": {
"default": false,
"description": "Include comments in the response",
"type": "boolean"
},
"questionId": {
"description": "Stack Overflow question ID",
"type": "number"
}
},
"required": [
"questionId"
],
"type": "object"
}