get_posts_by_author_id
Retrieve posts from a specific author by their ID using this tool. Input the author ID and optional limit to fetch results efficiently, aiding in targeted research and analysis.
Instructions
Get posts/drops by a specific author ID.
Args:
author_id: The author ID to search for
limit: Maximum number of results to return (default: 10)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
author_id | Yes | ||
limit | No |
Input Schema (JSON Schema)
{
"properties": {
"author_id": {
"title": "Author Id",
"type": "string"
},
"limit": {
"default": 10,
"title": "Limit",
"type": "integer"
}
},
"required": [
"author_id"
],
"title": "get_posts_by_author_idArguments",
"type": "object"
}