+ farcaster-feed
> Farcaster feed
// Returns a Farcaster feed for a user, channel, or timeline
socialfarcasterfeedtimeline
// aliases.json
These phrases resolve to this capability with intent-based discovery.
"farcaster feed"
"fc feed"
"warpcast feed"
"farcaster timeline"
// discover.sh
curl -X POST https://api.entroute.com/discover \ -H "Content-Type: application/json" \ -d '{"capability_id": "social.farcaster.feed"}'
// endpoints.json
2 results $0.0020
https://api.neynar.com/v2/farcaster/feed/trending success: 100%
latency: 234ms
// sample request
{
"limit": 25,
"time_window": "24h"
} // sample response
{
"casts": [
{
"hash": "0x...",
"text": "Trending post",
"author": {
"username": "dwr"
},
"reactions": {
"likes": 5000
}
}
],
"next": {
"cursor": "xyz789"
}
} $0.0020
https://api.neynar.com/v2/farcaster/feed/user success: N/A
latency: 70ms
// sample request
{
"fid": 5650,
"limit": 25
} // sample response
{
"casts": [
{
"hash": "0x...",
"text": "Latest post",
"author": {
"username": "vitalik"
},
"timestamp": "2024-01-15T10:00:00Z"
}
],
"next": {
"cursor": "abc123"
}
} // integrate.md
Use this capability in your agent or application:
// related capabilities
social.farcaster.cast social
Retrieves a Farcaster cast (post) by hash or URL including replies and reactions
social.farcaster.channel social
Returns Farcaster channel information including members and recent casts
social.farcaster.user social
Returns Farcaster user profile data including bio, followers, and verification
social.twitter.user social
Returns Twitter/X user profile data including bio, followers, and recent posts