Handle Finder
  1. Farcaster
Handle Finder
  • Farcaster
    • getMatch
      GET
    • getFollowersCount
      GET
    • getTotalFollowers
      GET
    • getFollowers
      GET
    • getFollowing
      GET
    • getLikesCount
      GET
    • getUserRank
      GET
    • getUserProfile
      GET
    • getUserProfilesByHandle
      GET
    • getUserProfiles
      GET
    • getFollowersHistory
      GET
    • getFollowerHistogram
      GET
    • getProfileRank
      GET
    • getRecentFollowers
      GET
    • getCasts
      GET
    • getUserEngagement
      GET
    • getTopFollowers
      GET
  • Lens
    • getUserRank
      GET
    • gatTopFollowers
      GET
    • getHistogram
      GET
    • getHistoryFollowers
      GET
    • getFollowersCount
      GET
    • getTotalFollowers
      GET
    • getScoreaverage
      GET
    • getRecentFollowers
      GET
    • findByUser
      GET
    • getProfileEngagement
      GET
    • getProfileRank
      GET
    • getCollectSumForUser
      GET
    • getCollectListForUser
      GET
    • getTopCreators
      GET
    • getTopCategories
      GET
  • Topics
    • getTopicsOfTheDay
    • getEngagers
    • getMentions
  • Categories
    • getCategories
    • getPublicationsByCategory
  • Tokens
    • getTokensMentions
    • getTokenPublicationMentions
  • Trending
    • getTrending
    • getTrendingTokensWithStats
  • Schemas
    • Schemas
      • AdminDto
      • SiweMessageDto
      • PaginationDto
      • GetLensDto
      • GetFarcasterLensMatchDto
      • GetLinksCountSevenDaysViewDto
      • GetTotalLinksViewDto
      • GetFarcasterTotalFollowingsViewDto
      • GetReactionCountSevenDaysViewDto
      • GetUserRankDto
      • HandleDto
      • OptimizedDto
      • CoverPictureDto
      • RawDto
      • PictureDto
      • MetadataDto
      • StatsDto
      • GetFarcasterProfileDto
      • GetFollowersHistoryDto
      • GetFollowerHistogramDto
      • GetProfileRankDto
      • FollowerDto
      • GetRecentFollowersDto
      • CastDto
      • getCastsDto
      • UserFarcasterDto
      • BoundDto
      • GetTopInteractionsDto
      • GetLensProfileDto
      • NotFoundException
      • GetHistogramDto
      • GetHistoryFollowersDto
      • GetFollowersCountDto
      • GetTotalFollowersDto
      • GetScoreAverageDto
      • GetUserDto
      • LensBoundDto
      • GetLensTopInteractionDto
      • RankDto
      • GetCollectSumDto
      • GetCollectDto
      • GetTopCreatorsDto
      • GetTopCategoriesDto
      • TopicDto
      • EngagersDto
      • TotalMentionsDto
      • CategoryDto
      • PublicationDto
      • TokenDto
      • PostDto
      • UserTrendingDto
      • TrendingDto
      • GetTrendingDto
      • TokenCategoryDto
      • MarketDto
      • PriceDto
      • TrendingTokensStatsDto
  1. Farcaster

getUserEngagement

GET
/api/farcaster/user/engagement/{fid}
Get top engagement of a farcaster user

Request

Authorization
Add parameter in header
apikey
Example:
apikey: ********************
Path Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.handlefinder.xyz/api/farcaster/user/engagement/' \
--header 'apikey: <api-key>'

Responses

🟢200OK
application/json
Engagement of a farcaster user
Body

Example
{
    "inbound": {
        "likes": [
            {
                "fid": 1234567890,
                "username": "user123",
                "name": "John Doe",
                "bio": "I am a social media influencer",
                "picture": "https://example.com/profile_picture.jpg",
                "url": "https://example.com/user123",
                "active": 1000,
                "createdAt": "2022-01-01T00:00:00.000Z",
                "updatedAt": "2022-01-01T00:00:00.000Z"
            }
        ],
        "comments": [
            {
                "fid": 1234567890,
                "username": "user123",
                "name": "John Doe",
                "bio": "I am a social media influencer",
                "picture": "https://example.com/profile_picture.jpg",
                "url": "https://example.com/user123",
                "active": 1000,
                "createdAt": "2022-01-01T00:00:00.000Z",
                "updatedAt": "2022-01-01T00:00:00.000Z"
            }
        ],
        "quotes": [
            {
                "fid": 1234567890,
                "username": "user123",
                "name": "John Doe",
                "bio": "I am a social media influencer",
                "picture": "https://example.com/profile_picture.jpg",
                "url": "https://example.com/user123",
                "active": 1000,
                "createdAt": "2022-01-01T00:00:00.000Z",
                "updatedAt": "2022-01-01T00:00:00.000Z"
            }
        ]
    },
    "outbound": {
        "likes": [
            {
                "fid": 1234567890,
                "username": "user123",
                "name": "John Doe",
                "bio": "I am a social media influencer",
                "picture": "https://example.com/profile_picture.jpg",
                "url": "https://example.com/user123",
                "active": 1000,
                "createdAt": "2022-01-01T00:00:00.000Z",
                "updatedAt": "2022-01-01T00:00:00.000Z"
            }
        ],
        "comments": [
            {
                "fid": 1234567890,
                "username": "user123",
                "name": "John Doe",
                "bio": "I am a social media influencer",
                "picture": "https://example.com/profile_picture.jpg",
                "url": "https://example.com/user123",
                "active": 1000,
                "createdAt": "2022-01-01T00:00:00.000Z",
                "updatedAt": "2022-01-01T00:00:00.000Z"
            }
        ],
        "quotes": [
            {
                "fid": 1234567890,
                "username": "user123",
                "name": "John Doe",
                "bio": "I am a social media influencer",
                "picture": "https://example.com/profile_picture.jpg",
                "url": "https://example.com/user123",
                "active": 1000,
                "createdAt": "2022-01-01T00:00:00.000Z",
                "updatedAt": "2022-01-01T00:00:00.000Z"
            }
        ]
    }
}
🟠404Record Not Found
Previous
getCasts
Next
getTopFollowers
Built with