get_posts_by_date
Retrieve QAnon posts within a specified date range using start and end dates in YYYY-MM-DD format. Optionally, limit the number of results returned for targeted analysis.
Instructions
Get posts/drops within a specific date range.
Args:
start_date: Start date in YYYY-MM-DD format
end_date: End date in YYYY-MM-DD format (defaults to start_date if not provided)
limit: Maximum number of results to return (default: 10)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_date | No | ||
limit | No | ||
start_date | Yes |
Input Schema (JSON Schema)
{
"properties": {
"end_date": {
"default": null,
"title": "End Date",
"type": "string"
},
"limit": {
"default": 10,
"title": "Limit",
"type": "integer"
},
"start_date": {
"title": "Start Date",
"type": "string"
}
},
"required": [
"start_date"
],
"title": "get_posts_by_dateArguments",
"type": "object"
}