[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.]

Creator

https://lunarcrush.com/api4/public/creator/:network/:id/v1

Get detail information on a specific creator

input parameters:

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": 226189551,
    "creator_rank": "2",
    "interactions_24h": 172468374,
    "topic_influence": [
      {
        "topic": "elon musk",
        "count": 151,
        "percent": 2.31,
        "rank": X
      }
    ]
  }
}

Schema:


Creator Posts

https://lunarcrush.com/api4/public/creator/:network/:id/posts/v1

Get the top posts for a specific creator.

input parameters:

Example request:

curl -H "Authorization: Bearer <API_KEY>" https://lunarcrush.com/api4/public/creator/twitter/elonmusk/posts/v1

Example response:

{
  "data": [
    {
      "id": "1953886838445552084",
      "post_type": "tweet",
      "post_title": "Good idea. \n\nAlso, we will be putting the most liked images on 𝕏 in the Grok Imagine default feed.",
      "post_created": 1754677898,
      "post_sentiment": 3.48,
      "post_link": "https://x.com/elonmusk/status/1953886838445552084",
      "post_image": null,
      "creator_id": "twitter::44196397",
      "creator_name": "elonmusk",
      "creator_display_name": "Elon Musk",
      "creator_followers": 226182670,
      "creator_avatar": "https://pbs.twimg.com/profile_images/1936002956333080576/kqqe2iWO_200x200.jpg",
      "interactions_24h": 0,
      "interactions_total": 18437764
    }
  ]
}

Schema:


Topic Creators

https://lunarcrush.com/api4/public/topic/:topic/creators/v1

Get the top creators for a social topic

input parameters:

Example request:

curl -H "Authorization: Bearer <API_KEY>" https://lunarcrush.com/api4/public/topic/bitcoin/creators/v1

Example response:

{
  "data": [
    {
      "creator_id": "youtube::UCDEnuP-Jf7ZnJW3GLm6gnwQ",
      "creator_name": "yeti_memecoin",
      "creator_avatar": "https://yt3.ggpht.com/zRUnebHL0_1L7VwO7VlIsjoxj1PugVmztTqhFLF-BSdElZ6qOszCjAb9PH17A4EzI8YkoawR0j4=s88-c-k-c0x00ffffff-no-rj",
      "creator_followers": 229000,
      "creator_rank": 1,
      "interactions_24h": 8200347
    }
  ]
}

Schema:


Category Creators

https://lunarcrush.com/api4/public/category/:category/creators/v1

Get the top creators for a social category

input parameters:

Example request:

curl -H "Authorization: Bearer <API_KEY>" https://lunarcrush.com/api4/public/category/musicians/creators/v1

Example response:

{
  "data": [
    {
      "creator_id": "youtube::UCPjMYcockOCN04LtZ7jdTGg",
      "creator_name": "saisarkar01",
      "creator_avatar": "https://yt3.ggpht.com/uvKOQyDkt4XFhSRC3qzfF2cH9YHbAJTjIHpnSw6PsR31hACZnkSQCaRqPxucgMQPGUmGLvxjaA=s88-c-k-c0x00ffffff-no-rj",
      "creator_followers": 2290000,
      "creator_rank": 1,
      "interactions_24h": 26709534
    }
  ]
}

Schema: