Handle Finder
  1. Trending
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
      POST
    • getTrendingTokensWithStats
      GET
  • 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. Trending

getTrending

POST
/api/trending/find
Find trending users

Request

Authorization
Add parameter in header
apikey
Example:
apikey: ********************
Body Params application/json

Example
{
    "page": 1,
    "limit": 20,
    "ratio": "Likes",
    "protocol": "Lens",
    "categories": [
        0
    ]
}

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 POST 'https://api.handlefinder.xyz/api/trending/find' \
--header 'apikey: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "page": 1,
    "limit": 20,
    "ratio": "Likes",
    "protocol": "Lens",
    "categories": [
        0
    ]
}'

Responses

🟢200OK
application/json
Trending users
Body

Example
{
    "users": [
        {
            "user": {
                "id": "0x13",
                "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
                }
            },
            "topFollowers": [
                {}
            ]
        }
    ],
    "page": 1,
    "total": 50,
    "totalPages": 50
}
🟠401Unauthorized
Previous
getTokenPublicationMentions
Next
getTrendingTokensWithStats
Built with