get_comments_by_submission
Retrieve comments from a Reddit submission by providing the submission ID to access discussion threads and user responses.
Instructions
Accéder aux commentaires d'une soumission
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Nombre de commentaires à récupérer | |
submission_id | Yes | L'ID de la soumission |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 20,
"description": "Nombre de commentaires à récupérer",
"type": "integer"
},
"submission_id": {
"description": "L'ID de la soumission",
"type": "string"
}
},
"required": [
"submission_id"
],
"type": "object"
}