+ 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
#1 Neynar listed
$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"
  }
}
#2 Neynar listed
$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: