get-channel-casts
Fetch casts from a specific Farcaster channel by specifying the channel name or URL and limit the number of results for targeted content retrieval.
Instructions
Get casts from a specific Farcaster channel
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel | Yes | Channel name (e.g., 'aichannel') or URL | |
limit | No | Maximum number of casts to return (default: 10) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"channel": {
"description": "Channel name (e.g., 'aichannel') or URL",
"type": "string"
},
"limit": {
"description": "Maximum number of casts to return (default: 10)",
"type": "number"
}
},
"required": [
"channel"
],
"type": "object"
}