jsonplaceholder_posts
Retrieve test posts data from JSONPlaceholder for reliable API testing. Set a limit (1-100) to control the number of posts fetched, ensuring consistent results for development and debugging.
Instructions
Get test posts data from JSONPlaceholder (always works, good for testing)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of posts to return (1-100) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"description": "Maximum number of posts to return (1-100)",
"maximum": 100,
"minimum": 1,
"type": "number"
}
},
"required": [],
"type": "object"
}