[GUEST ACCESS MODE: Data is scrambled or limited to provide examples. Make requests using your API key to unlock full data. Check https://lunarcrush.ai/auth for authentication information.]
@CuseCapital Cuse Capital 🍊
Cuse Capital 🍊 posts on X about the most. They currently have XX followers and X posts still getting attention that total X engagements in the last XX hours.
Engagements: undefined #

- X Months XX -XX%
- X Year XXX -XX%
Mentions: undefined #

- X Months X -XX%
- X Year X +150%
Followers: XX #

CreatorRank: undefined #

Social Influence #
Topic Creators
https://lunarcrush.com/api4/public/topic/:topic/creators/v1
Get the top creators for a social topic
input parameters:
- topic: Provide the topic to get details for. A topic must be all lower case and can only include letters, numbers, spaces, # and $. required
Example request:
curl -H "Authorization: Bearer <API_KEY>" https://lunarcrush.com/api4/public/topic/bitcoin/creators/v1
Example response:
{
"data": [
{
"creator_id": "twitter::1353384573435056128",
"creator_name": "rovercrc",
"creator_avatar": "https://pbs.twimg.com/profile_images/1891433835675475969/J-TloTb6_200x200.png",
"creator_followers": 1267738,
"creator_rank": 1,
"interactions_24h": 1686455
}
]
}
Schema:
- creator_id: The [network]::[unique_id] for the influencer
- creator_name: The unique screen name for the influencer
- creator_avatar: The URL to the avatar for the creator
- creator_followers: number of followers the account has
- creator_rank: ranking based on all posts in the last XX hours that have interactions
- interactions_24h: Number of interactions in the last XX hours
Creators List
https://lunarcrush.com/api4/public/creators/list/v1
Get a list of trending social creators over all of social based on interactions. To get lists of creators by category or topic see the topics and categories endpoints.
Example request:
curl -H "Authorization: Bearer <API_KEY>" https://lunarcrush.com/api4/public/creators/list/v1
Example response:
{
"data": [
{
"creator_name": "FoxNews",
"creator_display_name": "Fox News",
"creator_id": "1367531",
"creator_network": "twitter",
"creator_avatar": "https://pbs.twimg.com/profile_images/1591278197844414464/O6Fp0hFB_200x200.jpg",
"creator_followers": 26725655,
"creator_posts": 2639,
"creator_rank": 1,
"interactions_24h": 378298216
}
]
}
Schema:
- creator_name: The unique screen name for the influencer
- creator_display_name: The chosen display name for the influencer if available
- creator_id: The [network]::[unique_id] for the influencer
- creator_network: The social network for the post or influencer. We still refer to x as twitter out of developer preference.
- creator_avatar: The URL to the avatar for the creator
- creator_followers: number of followers the account has
- creator_posts: total number of posts with interactions in the last XX hours
- creator_rank: ranking based on all posts in the last XX hours that have interactions
- interactions_24h: Number of interactions in the last XX hours
Creator
https://lunarcrush.com/api4/public/creator/:network/:id/v1
Get detail information on a specific creator
input parameters:
- network: Provide the network for the creator. One of twitter, youtube, instagram, reddit, or tiktok required
- id: Provide the unique ID or screen name of the creator required
Example request:
curl -H "Authorization: Bearer <API_KEY>" https://lunarcrush.com/api4/public/creator/twitter/elonmusk/v1
Example response:
{
"data": {
"creator_id": "twitter::44196397",
"creator_name": "elonmusk",
"creator_display_name": "Elon Musk",
"creator_avatar": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_200x200.jpg",
"creator_followers": 221643469,
"creator_rank": "9",
"interactions_24h": 137219778,
"topic_influence": [
{
"topic": "elon musk",
"count": 282,
"percent": 4.45,
"rank": X
}
]
}
}
Schema:
- creator_id: The [network]::[unique_id] for the influencer
- creator_name: The unique screen name for the influencer
- creator_display_name: The chosen display name for the influencer if available
- creator_avatar: The URL to the avatar for the creator
- creator_followers: number of followers the account has
- creator_rank: ranking based on all posts in the last XX hours that have interactions
- interactions_24h: Number of interactions in the last XX hours
- topic_influence: an array of social topics and the creators ranking on each topic
- topic: LunarCrush social topic. Can only includes letters, numbers, spaces, #, and $
Creator Time Series
https://lunarcrush.com/api4/public/creator/:network/:id/time-series/v1
Get time series data on a creator.
input parameters:
- network: Influencer social network required
- id: The unique id or screen name of the creator required
- bucket: bucket time series data into hours or days. default is hours.
- interval: Use interval to specify the start and end time automatically for convenience. If "start" or "end" parameters are provided this parameter is ignored.
- start: The start time (unix timestamp) to go back to.
- end: The end time (unix timestamp) to stop at.
Example request:
curl -H "Authorization: Bearer <API_KEY>" https://lunarcrush.com/api4/public/creator/twitter/lunarcrush/time-series/v1
Example response:
{
"config": {
"network": "twitter",
"influencer_id": "twitter::988992203568562176",
"interval": "1w",
"start": 1750896000,
"end": 1751587200,
"bucket": "hour",
"name": "lunarcrush",
"remote_api": "danode1-13",
"generated": 1751552702
},
"data": [
{
"time": 1750896000,
"followers": 310261,
"interactions": 5925,
"posts_active": 40,
"creator_rank": 121192
}
]
}
Schema:
- config: This includes the inputs for the request processed by the server and may include additional hints about the request and response information.
- network: The social network for the post or influencer. We still refer to x as twitter out of developer preference.
- interval: Typically used for specifying time intervals like 1w = X week, 1m = X month etc
- start: Start/from unix timestamp (in seconds)
- end: End/to unix timestamp (in seconds)
- bucket: Data is generally bucketed into hours or days
- name: The full name of the asset
- generated: A unix timestamp (in seconds) when the data was generated to understand possibly stale data
- time: A unix timestamp (in seconds)
- followers: The number of publicly displayed followers the creator has
- interactions: number of all publicly measurable interactions on a social post (views, likes, comments, thumbs up, upvote, share etc)
- posts_active: number of unique social posts with interactions
- creator_rank: ranking based on all posts in the last XX hours that have interactions