get-username-casts
Retrieve casts from a specific Farcaster username by specifying the user and optional limit to fetch recent interactions or content shared on the network.
Instructions
Get casts from a specific Farcaster username
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of casts to return (default: 10) | |
username | Yes | Farcaster username |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"description": "Maximum number of casts to return (default: 10)",
"type": "number"
},
"username": {
"description": "Farcaster username",
"type": "string"
}
},
"required": [
"username"
],
"type": "object"
}