get-user-content
Retrieve user-generated content from social platforms like Farcaster, Twitter, and Telegram by specifying the user ID and platform. Control the number of posts returned with a customizable limit.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of posts to return | |
platform | Yes | Social platform (farcaster, twitter, telegram) | |
userId | Yes | User ID or username on the platform |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"description": "Maximum number of posts to return",
"type": "number"
},
"platform": {
"description": "Social platform (farcaster, twitter, telegram)",
"type": "string"
},
"userId": {
"description": "User ID or username on the platform",
"type": "string"
}
},
"required": [
"platform",
"userId"
],
"type": "object"
}