jsonplaceholder_comments
Retrieve test comments data for specific posts via JSONPlaceholder API. Use post ID to fetch targeted comments or set a limit to control the number of results. Ideal for testing and development purposes.
Instructions
Get test comments data from JSONPlaceholder
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of comments to return (1-100) | |
postId | No | Post ID to get comments for (1-100, optional) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"description": "Maximum number of comments to return (1-100)",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"postId": {
"description": "Post ID to get comments for (1-100, optional)",
"type": "number"
}
},
"required": [],
"type": "object"
}