💬Farcaster
Learn how to monitor specific cast activity on the Farcaster protocol
Monitor new casts on the Farcaster protocol, filtering by author, mentions, or keywords. This event type can be used to track specific users, identify trending topics, or even build a new Farcaster client.
Event Type: FARCASTER_CAST
To create a Farcaster event type, send a POST
request to the /api/v1/nodefy/notifications/
endpoint with the following JSON payload:
Example Request:
Required FARCASTER_CAST
Parameters:
FARCASTER_CAST
Parameters:One of the following parameters must be provided in order to successfully create a webhook to monitor all casts:
text
: A string containing keywords. The webhook will trigger if any of these keywords are found in a cast.author_fids
: An array of Farcaster user IDs (FIDs) to monitor. The webhook will trigger for new casts created by these users.mentioned_fids
: An array of FIDs that, if mentioned in a cast, will trigger the webhook.channel
: A string of the Farcaster channel name. The webhook will trigger for new casts in this channel(s).
Farcaster Event Filters
You can apply more specific filters on Farcaster events using our filter system. Filters allow you to capture events based on parameters such as a range of FIDs, power badge status, and more. Refer to the "Using Filters" section for more information.
Example Webhook Payload:
Last updated