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

getUserProfile

GET
/api/farcaster/user/profile/{fid}
Get the profile 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/profile/' \
--header 'apikey: <api-key>'

Responses

🟢200OK
application/json
profile of farcaster user
Body

Example
{
    "fid": 1234567890,
    "handle": {
        "localName": "john.doe"
    },
    "metadata": {
        "coverPicture": {
            "optimized": {
                "uri": "https://example.com/optimized_picture.jpg"
            }
        },
        "displayName": "John Doe",
        "picture": {
            "raw": {
                "uri": "https://example.com/image.jpg"
            }
        },
        "bio": "I love coding and photography."
    },
    "stats": {
        "followers": 100,
        "following": 200,
        "lensClassifierScore": 0.8,
        "posts": 50
    }
}
🟠404Record Not Found
Previous
getUserRank
Next
getUserProfilesByHandle
Built with