jsonplaceholder_albums
Retrieve test album data for a specific user or a set of users. Specify a user ID or limit the number of albums returned to streamline data retrieval.
Instructions
Get test albums data from JSONPlaceholder
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of albums to return (1-100) | |
userId | No | User ID to get albums for (1-10, optional) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"description": "Maximum number of albums to return (1-100)",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"userId": {
"description": "User ID to get albums for (1-10, optional)",
"type": "number"
}
},
"required": [],
"type": "object"
}