+ farcaster-user-profile
> Farcaster user profile
// Returns Farcaster user profile data including bio, followers, and verification
socialfarcasterprofileuser
// aliases.json
These phrases resolve to this capability with intent-based discovery.
"farcaster user"
"farcaster profile"
"fc user"
"warpcast profile"
// discover.sh
curl -X POST https://api.entroute.com/discover \ -H "Content-Type: application/json" \ -d '{"capability_id": "social.farcaster.user"}'
// endpoints.json
2 results $0.0020
https://api.neynar.com/v2/farcaster/user/bulk success: 100%
latency: 201ms
// sample request
{
"fids": "5650,2,3"
} // sample response
{
"users": [
{
"fid": 5650,
"username": "vitalik",
"display_name": "Vitalik Buterin"
},
{
"fid": 2,
"username": "v",
"display_name": "Varun"
}
]
} $0.0010
https://api.neynar.com/v2/farcaster/user/by_username success: 100%
latency: 232ms
// sample request
{
"username": "vitalik"
} // sample response
{
"user": {
"fid": 5650,
"username": "vitalik",
"display_name": "Vitalik Buterin",
"pfp_url": "https://...",
"follower_count": 150000,
"following_count": 500,
"bio": "Ethereum"
}
} // 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.feed social
Returns a Farcaster feed for a user, channel, or timeline
social.twitter.user social
Returns Twitter/X user profile data including bio, followers, and recent posts