This documentation is available as JSON, OpenAPI v3, and markdown.

LunarCrush API v4

Base URL: https://lunarcrush.com/api4
Authentication: https://lunarcrush.com/developers/api/authentication
Available Endpoints:

Topics
Topics List
Topic Whatsup
Topic
Topic Time Series v2
Topic Time Series
Topic Posts
Topic News
Topic Creators
Categories
Category
Category Topics
Category Time Series
Category Posts
Category News
Category Creators
Categories List
Creators
Creators List
Creator
Creator Time Series
Creator Posts
Posts
Posts
Posts Time Series
Coins
Coins List v2
Coins List
Coins
Coins Time Series
Coins Meta
Stocks
Stocks List v2
Stocks List
Stocks
Stocks Time Series
Searches
Searches Search
Searches List
Searches Create
Searches Update
Searches Delete
Searches
Systems
System Changes


Topics List

https://lunarcrush.com/api4/public/topics/list/v1

Get a list of trending social topics.

Example request:

curl -H "Authorization: Bearer <API_KEY>" https://lunarcrush.com/api4/public/topics/list/v1

Example response:

{
  "data": [
    {
      "topic": "ai", // LunarCrush social topic. Can only includes letters, numbers, spaces, #, and $
      "title": "AI", // The case sensitive title of the topic or category
      "topic_rank": 1, // LunarCrush metric for ranking a social topic relative to all other social topics
      "topic_rank_1h_previous": 2, // The topic rank from 1 hour ago
      "topic_rank_24h_previous": 2, // The topic rank from 24 hours ago
      "num_contributors": 478667, // The number of unique social contributors to the topic
      "num_posts": 908675, // Total number of posts with interactions on this topic in the last 24 hours
      "interactions_24h": 5108495614 // Number of interactions in the last 24 hours
    }
  ]
}

Schema:


Topic Whatsup

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

Generate an AI summary of the hottest news and social posts for a specific topic

input parameters:

Example request:

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

Example response:

{
  "config": { // This includes the inputs for the request processed by the server and may include additional hints about the request and response information.
    "id": "bitcoin", // LunarCrush internal ID for the asset
    "_self_call": true,
    "name": "Bitcoin", // The full name of the asset
    "symbol": "BTC", // The symbol for the asset
    "topic": "bitcoin", // LunarCrush social topic. Can only includes letters, numbers, spaces, #, and $
    "generated": 1783877159 // A unix timestamp (in seconds) when the data was generated to understand possibly stale data
  },
  "summary": "Bitcoin holds near 64k as on-chain demand tightens; macro headwinds cap upside. Analysts warn a dip toward 60k could precede a bounce.",
  "supportive": [ // An array of supportive themes with a title, description, and an estimate of the percent of the circulating conversations on social around this theme.
    {
      "title": "On-Chain Push Toward 64K", // The case sensitive title of the topic or category
      "description": "On-chain activity remains robust, lifting BTC toward the 64K resistance as accumulation pressure builds.", // Explanation of the change and the potential impact
      "percent": 33
    }
  ],
  "critical": [ // An array of critical themes with a title, description, and an estimate of the percent of the circulating conversations on social around this theme.
    {
      "title": "Macro Headwinds Persist", // The case sensitive title of the topic or category
      "description": "Wider macro trends and ETF outflows weigh on BTC, constraining upside.", // Explanation of the change and the potential impact
      "percent": 22
    }
  ]
}

Schema:


Topic

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

Get summary information for a social topic. The output is a 24 hour aggregation social activity with metrics comparing the latest 24 hours to the previous 24 hours.

input parameters:

Example request:

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

Example response:

{
  "config": { // This includes the inputs for the request processed by the server and may include additional hints about the request and response information.
    "id": "bitcoin", // LunarCrush internal ID for the asset
    "_self_call": true,
    "name": "Bitcoin", // The full name of the asset
    "symbol": "BTC", // The symbol for the asset
    "topic": "bitcoin", // LunarCrush social topic. Can only includes letters, numbers, spaces, #, and $
    "generated": 1783883725 // A unix timestamp (in seconds) when the data was generated to understand possibly stale data
  },
  "data": {
    "topic": "bitcoin", // LunarCrush social topic. Can only includes letters, numbers, spaces, #, and $
    "title": "Bitcoin", // The case sensitive title of the topic or category
    "topic_rank": 137, // LunarCrush metric for ranking a social topic relative to all other social topics
    "related_topics": [ // an array of related topics
      "crypto"
    ],
    "types_count": { // An object with the counts of the total number of unique posts getting interactions from each social network in the last 24 hours
      "news": 177,
      "instagram-post": 190,
      "reddit-post": 814,
      "tiktok-video": 13637,
      "youtube-video": 16881,
      "tweet": 83739
    },
    "types_interactions": { // An object with the counts of the total number of interactions on each post from each social network in the last 24 hours
      "news": 110708,
      "instagram-post": 370237,
      "reddit-post": 65372,
      "tiktok-video": 39823856,
      "youtube-video": 14723642,
      "tweet": 62858959
    },
    "types_sentiment": { // An object with the sentiment score broken down by each supported social network. 0% is all posts negative, 100% is all posts positive. 50% is equal positive and negative posts. Each post is weighted by interactions.
      "news": 60,
      "instagram-post": 95,
      "reddit-post": 78,
      "tiktok-video": 53,
      "youtube-video": 74,
      "tweet": 78
    },
    "types_sentiment_detail": { // An object with the breakdown of positive, neutral, and negative posts by 24h interactions for each social network
      "news": {
        "negative": 48,
        "neutral": 71,
        "positive": 58
      },
      "instagram-post": {
        "negative": 23,
        "neutral": 113,
        "positive": 54
      },
      "reddit-post": {
        "negative": 113,
        "neutral": 380,
        "positive": 321
      },
      "tiktok-video": {
        "negative": 2140,
        "neutral": 8471,
        "positive": 2967
      },
      "youtube-video": {
        "negative": 1874,
        "neutral": 9457,
        "positive": 5449
      },
      "tweet": {
        "negative": 10806,
        "neutral": 47102,
        "positive": 25741
      }
    },
    "interactions_24h": 117952774, // Number of interactions in the last 24 hours
    "num_contributors": 45502, // The number of unique social contributors to the topic
    "num_posts": 115438, // Total number of posts with interactions on this topic in the last 24 hours
    "categories": [ // an array of categories this topic aggregates into
      "Cryptocurrencies"
    ],
    "trend": "down" // One of up, down or flat to represent the general trend in interactions
  }
}

Schema:


Topic Time Series v2

https://lunarcrush.com/api4/public/topic/:topic/time-series/v2

Get historical time series data for a social topic

input parameters:

Example request:

curl -H "Authorization: Bearer <API_KEY>" https://lunarcrush.com/api4/public/topic/bitcoin/time-series/v2

Example response:

{
  "config": { // This includes the inputs for the request processed by the server and may include additional hints about the request and response information.
    "topic": "bitcoin", // LunarCrush social topic. Can only includes letters, numbers, spaces, #, and $
    "id": "bitcoin", // LunarCrush internal ID for the asset
    "_self_call": true,
    "name": "Bitcoin", // The full name of the asset
    "symbol": "BTC", // The symbol for the asset
    "interval": "1w", // Typically used for specifying time intervals like 1w = 1 week, 1m = 1 month etc
    "start": 1783209600, // Start/from unix timestamp (in seconds)
    "end": 1783890925, // End/to unix timestamp (in seconds)
    "bucket": "hour", // Data is generally bucketed into hours or days
    "metrics": [], // Comma separated list of metrics to include or that are included
    "generated": 1783883725 // A unix timestamp (in seconds) when the data was generated to understand possibly stale data
  },
  "data": [
    {
      "time": 1783209600, // A unix timestamp (in seconds)
      "contributors_active": 30046, // number of unique social accounts with posts that have interactions
      "contributors_created": 597, // number of unique social accounts that created new posts
      "interactions": 5407727, // number of all publicly measurable interactions on a social post (views, likes, comments, thumbs up, upvote, share etc)
      "posts_active": 72378, // number of unique social posts with interactions
      "posts_created": 1070, // number of unique social posts created
      "sentiment": 69, // % of posts (weighted by interactions) that are positive. 100% means all posts are positive, 50% is half positive and half negative, and 0% is all negative posts.
      "spam": 5218, // The number of posts created that are considered spam
      "alt_rank": 90, // A proprietary score based on how an asset is performing relative to all other assets supported
      "circulating_supply": 20052203, // Circulating Supply is the total number of coins or tokens that are actively available for trade and are being used in the market and in general public
      "close": 62971, // Close price for the time period
      "galaxy_score": 51, // A proprietary score based on technical indicators of price, average social sentiment, relative social activity, and a factor of how closely social indicators correlate with price and volume
      "high": 62971, // Higest price fo rthe time period
      "low": 62971, // Lowest price for the time period
      "market_cap": 1264487265968, // Total dollar market value of all circulating supply or outstanding shares
      "market_dominance": 57.888, // The percent of the total market cap that this asset represents
      "open": 62971, // Open price for the time period
      "social_dominance": 30.2183, // The percent of the total social volume that this topic represents
      "volume_24h": 18129011952 // Volume in USD for 24 hours up to this data point
    }
  ]
}

Schema:


Topic Time Series

https://lunarcrush.com/api4/public/topic/:topic/time-series/v1

Get historical time series data for a social topic

input parameters:

Example request:

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

Example response:

{
  "config": { // This includes the inputs for the request processed by the server and may include additional hints about the request and response information.
    "topic": "bitcoin", // LunarCrush social topic. Can only includes letters, numbers, spaces, #, and $
    "id": "bitcoin", // LunarCrush internal ID for the asset
    "_self_call": true,
    "name": "Bitcoin", // The full name of the asset
    "symbol": "BTC", // The symbol for the asset
    "interval": "1w", // Typically used for specifying time intervals like 1w = 1 week, 1m = 1 month etc
    "start": 1783209600, // Start/from unix timestamp (in seconds)
    "end": 1783890925, // End/to unix timestamp (in seconds)
    "bucket": "hour", // Data is generally bucketed into hours or days
    "metrics": [], // Comma separated list of metrics to include or that are included
    "generated": 1783883725 // A unix timestamp (in seconds) when the data was generated to understand possibly stale data
  },
  "data": [
    {
      "time": 1783209600, // A unix timestamp (in seconds)
      "contributors_active": 30046, // number of unique social accounts with posts that have interactions
      "contributors_created": 597, // number of unique social accounts that created new posts
      "interactions": 5407727, // number of all publicly measurable interactions on a social post (views, likes, comments, thumbs up, upvote, share etc)
      "posts_active": 72378, // number of unique social posts with interactions
      "posts_created": 1070, // number of unique social posts created
      "sentiment": 69, // % of posts (weighted by interactions) that are positive. 100% means all posts are positive, 50% is half positive and half negative, and 0% is all negative posts.
      "spam": 5218, // The number of posts created that are considered spam
      "alt_rank": 90, // A proprietary score based on how an asset is performing relative to all other assets supported
      "circulating_supply": 20052203, // Circulating Supply is the total number of coins or tokens that are actively available for trade and are being used in the market and in general public
      "close": 62971, // Close price for the time period
      "galaxy_score": 51, // A proprietary score based on technical indicators of price, average social sentiment, relative social activity, and a factor of how closely social indicators correlate with price and volume
      "high": 62971, // Higest price fo rthe time period
      "low": 62971, // Lowest price for the time period
      "market_cap": 1264487265968, // Total dollar market value of all circulating supply or outstanding shares
      "market_dominance": 57.888, // The percent of the total market cap that this asset represents
      "open": 62971, // Open price for the time period
      "social_dominance": 30.2183, // The percent of the total social volume that this topic represents
      "volume_24h": 18129011952 // Volume in USD for 24 hours up to this data point
    }
  ]
}

Schema:


Topic Posts

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

Get the top posts for a social topic. If start time is provided the result will be the top posts by interactions for the time range. If start is not provided it will be the most recent top posts by interactions from the last 24 hours.

input parameters:

Example request:

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

Example response:

{
  "config": { // This includes the inputs for the request processed by the server and may include additional hints about the request and response information.
    "topic": "bitcoin", // LunarCrush social topic. Can only includes letters, numbers, spaces, #, and $
    "type": "topic", // Type of item or social network of item e.g. tweet, youtube-video, tiktok, x, youtube, category, topic, creator/influencer
    "id": "bitcoin", // Unique id of the social post
    "_self_call": true,
    "name": "Bitcoin", // The full name of the asset
    "symbol": "BTC", // The symbol for the asset
    "generated": 1783883726 // A unix timestamp (in seconds) when the data was generated to understand possibly stale data
  },
  "data": [
    {
      "id": "t3_1uuk62g", // Unique id of the social post
      "post_type": "reddit-post", // The type of social post
      "post_title": "This Government List Is Getting Bitcoiners Klled | Francis Pouliot - Bull Bitcoin CEO", // The title text of the social post
      "post_description": "Bitcoin", // The larger text description or body of the social post if available
      "post_link": "https://redd.it/1uuk62g", // The URL to view the social post on the social network
      "post_created": 1783873811, // The unix timestamp of our best indication of when the post was created
      "post_sentiment": 3, // The sentiment of the post is a score between 1 and 5 with 1 being very negative, 3 being neutral, and 5 being very positive. A score of 3.5 is considered slightly positive.
      "creator_id": "reddit::t2_7kh5n", // The [network]::[unique_id] for the influencer
      "creator_name": "Fiach_Dubh", // The unique screen name for the influencer
      "creator_display_name": "Fiach_Dubh", // The chosen display name for the influencer if available
      "creator_followers": 71237, // number of followers the account has
      "creator_avatar": "https://styles.redditmedia.com/t5_1y6pv0/styles/profileIcon_jat1f3i7d2gb1.png?width=256&height=256&crop=256:256,smart&s=a3185c15aad35f47353426b101fe2c5a1630a655", // The URL to the avatar for the creator
      "interactions_24h": 156, // Number of interactions in the last 24 hours
      "interactions_total": 156 // Number of total interactions
    }
  ]
}

Schema:


Topic News

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

Get the top news posts for a social topic. Top news is determined by the metrics related to the social posts that mention the news posts.

input parameters:

Example request:

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

Example response:

{
  "config": { // This includes the inputs for the request processed by the server and may include additional hints about the request and response information.
    "topic": "bitcoin", // LunarCrush social topic. Can only includes letters, numbers, spaces, #, and $
    "type": "topic", // Type of item or social network of item e.g. tweet, youtube-video, tiktok, x, youtube, category, topic, creator/influencer
    "id": "bitcoin", // LunarCrush internal ID for the asset
    "name": "Bitcoin", // The full name of the asset
    "symbol": "BTC", // The symbol for the asset
    "generated": 1783883726 // A unix timestamp (in seconds) when the data was generated to understand possibly stale data
  },
  "data": [
    {
      "id": "news.bitcoin.com-3625375233", // LunarCrush internal ID for the asset
      "post_type": "news", // The type of social post
      "post_title": "Trump Warns of 1,000 Missiles Aimed at Iran as Bitcoin Holds Near $64,000", // The title text of the social post
      "post_description": "Bitcoin holds $64,000 as Trump declares the Iran ceasefire over; market observers tie the crypto bear market to war risk.", // The larger text description or body of the social post if available
      "post_link": "https://news.bitcoin.com/trump-warns-of-1000-missiles-aimed-at-iran-as-bitcoin-holds-near-64000/", // The URL to view the social post on the social network
      "post_created": 1783873911, // The unix timestamp of our best indication of when the post was created
      "post_sentiment": 2.76, // The sentiment of the post is a score between 1 and 5 with 1 being very negative, 3 being neutral, and 5 being very positive. A score of 3.5 is considered slightly positive.
      "creator_id": "twitter::3367334171", // The [network]::[unique_id] for the influencer
      "creator_name": "BitcoinNews", // The unique screen name for the influencer
      "creator_display_name": "Bitcoin.com News", // The chosen display name for the influencer if available
      "creator_followers": 3271586, // number of followers the account has
      "creator_avatar": "https://pbs.twimg.com/profile_images/1917825669825966080/2bAp4kVv_200x200.jpg", // The URL to the avatar for the creator
      "interactions_24h": 19157, // Number of interactions in the last 24 hours
      "interactions_total": 19157, // Number of total interactions
      "post_image": "https://static.news.bitcoin.com/wp-content/uploads/2026/07/trump-warns-of-1000-missiles-aimed-at-iran-as-bitcoin-holds-near-64000.png" // The URL to the primary image for the post if available
    }
  ]
}

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": "tiktok::6812445406627333126", // The [network]::[unique_id] for the influencer
      "creator_name": "enzocobcripto", // The unique screen name for the influencer
      "creator_avatar": "https://p16-common-sign.tiktokcdn.com/tos-alisg-avt-0068/190e2d53557c78bf261b398747fde498~tplv-tiktokx-cropcenter:100:100.webp?dr=14579&refresh_token=0d953acc&x-expires=1782957600&x-signature=Q7j0CvoGHLOoetjPqR08pc2XHs4%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=sg1", // The URL to the avatar for the creator
      "creator_followers": 293800, // number of followers the account has
      "creator_rank": 1, // ranking based on all posts in the last 24 hours that have interactions
      "interactions_24h": 7023126 // Number of interactions in the last 24 hours
    }
  ]
}

Schema:


Category

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

Get summary information for a social category

input parameters:

Example request:

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

Example response:

{
  "data": {
    "topic": "_musicians", // LunarCrush social topic. Can only includes letters, numbers, spaces, #, and $
    "title": "Musicians", // The case sensitive title of the topic or category
    "related_topics": [ // an array of related topics
      "aerosmith"
    ],
    "types_count": { // An object with the counts of the total number of unique posts getting interactions from each social network in the last 24 hours
      "news": 663,
      "instagram-post": 2331,
      "reddit-post": 5734,
      "tiktok-video": 263646,
      "youtube-video": 182857,
      "tweet": 287136
    },
    "types_interactions": { // An object with the counts of the total number of interactions on each post from each social network in the last 24 hours
      "news": 1765014,
      "instagram-post": 15363444,
      "reddit-post": 1346632,
      "tiktok-video": 5248300799,
      "youtube-video": 770308698,
      "tweet": 462477489
    },
    "types_sentiment": { // An object with the sentiment score broken down by each supported social network. 0% is all posts negative, 100% is all posts positive. 50% is equal positive and negative posts. Each post is weighted by interactions.
      "news": 94,
      "instagram-post": 94,
      "reddit-post": 77,
      "tiktok-video": 77,
      "youtube-video": 74,
      "tweet": 69
    },
    "types_sentiment_detail": { // An object with the breakdown of positive, neutral, and negative posts by 24h interactions for each social network
      "news": {
        "negative": 82,
        "neutral": 219,
        "positive": 361
      },
      "instagram-post": {
        "negative": 238,
        "neutral": 1174,
        "positive": 916
      },
      "reddit-post": {
        "negative": 721,
        "neutral": 2905,
        "positive": 2107
      },
      "tiktok-video": {
        "negative": 35543,
        "neutral": 137440,
        "positive": 90525
      },
      "youtube-video": {
        "negative": 27163,
        "neutral": 84234,
        "positive": 71178
      },
      "tweet": {
        "negative": 43629,
        "neutral": 157344,
        "positive": 85880
      }
    },
    "interactions_24h": 6499562076, // Number of interactions in the last 24 hours
    "num_contributors": 360567, // The number of unique social contributors to the topic
    "num_posts": 742367, // Total number of posts with interactions on this topic in the last 24 hours
    "trend": "flat" // One of up, down or flat to represent the general trend in interactions
  }
}

Schema:


Category Topics

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

Get the top topics for a social category

input parameters:

Example request:

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

Example response:

{
  "data": [
    {
      "topic": 3038, // LunarCrush social topic. Can only includes letters, numbers, spaces, #, and $
      "title": "Aerosmith", // The case sensitive title of the topic or category
      "topic_rank": 2068, // LunarCrush metric for ranking a social topic relative to all other social topics
      "topic_rank_1h_previous": 1854, // The topic rank from 1 hour ago
      "topic_rank_24h_previous": 1854, // The topic rank from 24 hours ago
      "num_contributors": 1373, // The number of unique social contributors to the topic
      "social_dominance": 0.045334904120286214, // The percent of the total social volume that this topic represents
      "num_posts": 2099, // Total number of posts with interactions on this topic in the last 24 hours
      "interactions_24h": 3140213 // Number of interactions in the last 24 hours
    }
  ]
}

Schema:


Category Time Series

https://lunarcrush.com/api4/public/category/:category/time-series/v1

Get historical time series data for a social category

input parameters:

Example request:

curl -H "Authorization: Bearer <API_KEY>" https://lunarcrush.com/api4/public/category/cryptocurrencies/time-series/v1

Example response:

{
  "config": { // This includes the inputs for the request processed by the server and may include additional hints about the request and response information.
    "category": "cryptocurrencies", // LunarCrush social category. Can only includes letters, numbers and spaces
    "topic": "_cryptocurrencies", // LunarCrush social topic. Can only includes letters, numbers, spaces, #, and $
    "type": "topic", // Type of item or social network of item e.g. tweet, youtube-video, tiktok, x, youtube, category, topic, creator/influencer
    "id": "_cryptocurrencies", // LunarCrush internal ID for the asset
    "interval": "1w", // Typically used for specifying time intervals like 1w = 1 week, 1m = 1 month etc
    "start": 1783209600, // Start/from unix timestamp (in seconds)
    "end": 1783890926, // End/to unix timestamp (in seconds)
    "bucket": "hour", // Data is generally bucketed into hours or days
    "metrics": [], // Comma separated list of metrics to include or that are included
    "generated": 1783883726 // A unix timestamp (in seconds) when the data was generated to understand possibly stale data
  },
  "data": [
    {
      "time": 1783209600, // A unix timestamp (in seconds)
      "contributors_active": 87466, // number of unique social accounts with posts that have interactions
      "contributors_created": 3047, // number of unique social accounts that created new posts
      "interactions": 22003799, // number of all publicly measurable interactions on a social post (views, likes, comments, thumbs up, upvote, share etc)
      "posts_active": 239517, // number of unique social posts with interactions
      "posts_created": 8113, // number of unique social posts created
      "sentiment": 76, // % of posts (weighted by interactions) that are positive. 100% means all posts are positive, 50% is half positive and half negative, and 0% is all negative posts.
      "spam": 22461, // The number of posts created that are considered spam
      "market_cap": 2184368324496, // Total dollar market value of all circulating supply or outstanding shares
      "volume_24h": 53184751693 // Volume in USD for 24 hours up to this data point
    }
  ]
}

Schema:


Category Posts

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

Get the top posts for a social topic. If start time is provided the result will be the top posts by interactions for the time range. If start is not provided it will be the most recent top posts by interactions from the last 24 hours.

input parameters:

Example request:

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

Example response:

{
  "config": { // This includes the inputs for the request processed by the server and may include additional hints about the request and response information.
    "category": "cryptocurrencies", // LunarCrush social category. Can only includes letters, numbers and spaces
    "type": "topic", // Type of item or social network of item e.g. tweet, youtube-video, tiktok, x, youtube, category, topic, creator/influencer
    "id": "_cryptocurrencies", // Unique id of the social post
    "topic": "_cryptocurrencies", // LunarCrush social topic. Can only includes letters, numbers, spaces, #, and $
    "generated": 1783883726 // A unix timestamp (in seconds) when the data was generated to understand possibly stale data
  },
  "data": [
    {
      "id": "t3_1uuk62g", // Unique id of the social post
      "post_type": "reddit-post", // The type of social post
      "post_title": "This Government List Is Getting Bitcoiners Klled | Francis Pouliot - Bull Bitcoin CEO", // The title text of the social post
      "post_description": "Bitcoin", // The larger text description or body of the social post if available
      "post_created": 1783873811, // The unix timestamp of our best indication of when the post was created
      "post_sentiment": 3, // The sentiment of the post is a score between 1 and 5 with 1 being very negative, 3 being neutral, and 5 being very positive. A score of 3.5 is considered slightly positive.
      "creator_id": "reddit::t2_7kh5n", // The [network]::[unique_id] for the influencer
      "creator_name": "Fiach_Dubh", // The unique screen name for the influencer
      "creator_display_name": "Fiach_Dubh", // The chosen display name for the influencer if available
      "creator_followers": 71237, // number of followers the account has
      "creator_avatar": "https://styles.redditmedia.com/t5_1y6pv0/styles/profileIcon_jat1f3i7d2gb1.png?width=256&height=256&crop=256:256,smart&s=a3185c15aad35f47353426b101fe2c5a1630a655", // The URL to the avatar for the creator
      "interactions_24h": 156, // Number of interactions in the last 24 hours
      "interactions_total": 156 // Number of total interactions
    }
  ]
}

Schema:


Category News

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

Get the top news posts for a category. Top news is determined by the metrics related to the social posts that mention the news posts.

input parameters:

Example request:

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

Example response:

{
  "config": { // This includes the inputs for the request processed by the server and may include additional hints about the request and response information.
    "category": "cryptocurrencies", // LunarCrush social category. Can only includes letters, numbers and spaces
    "type": "topic", // Type of item or social network of item e.g. tweet, youtube-video, tiktok, x, youtube, category, topic, creator/influencer
    "id": "_cryptocurrencies", // LunarCrush internal ID for the asset
    "topic": "_cryptocurrencies", // LunarCrush social topic. Can only includes letters, numbers, spaces, #, and $
    "generated": 1783883726 // A unix timestamp (in seconds) when the data was generated to understand possibly stale data
  },
  "data": [
    {
      "id": "news.bitcoin.com-3625375233", // LunarCrush internal ID for the asset
      "post_type": "news", // The type of social post
      "post_title": "Trump Warns of 1,000 Missiles Aimed at Iran as Bitcoin Holds Near $64,000", // The title text of the social post
      "post_description": "Bitcoin holds $64,000 as Trump declares the Iran ceasefire over; market observers tie the crypto bear market to war risk.", // The larger text description or body of the social post if available
      "post_link": "https://news.bitcoin.com/trump-warns-of-1000-missiles-aimed-at-iran-as-bitcoin-holds-near-64000/", // The URL to view the social post on the social network
      "post_image": "https://static.news.bitcoin.com/wp-content/uploads/2026/07/trump-warns-of-1000-missiles-aimed-at-iran-as-bitcoin-holds-near-64000.png", // The URL to the primary image for the post if available
      "post_created": 1783873911, // The unix timestamp of our best indication of when the post was created
      "post_sentiment": 2.76, // The sentiment of the post is a score between 1 and 5 with 1 being very negative, 3 being neutral, and 5 being very positive. A score of 3.5 is considered slightly positive.
      "creator_id": "twitter::3367334171", // The [network]::[unique_id] for the influencer
      "creator_name": "BitcoinNews", // The unique screen name for the influencer
      "creator_display_name": "Bitcoin.com News", // The chosen display name for the influencer if available
      "creator_followers": 3271586, // number of followers the account has
      "creator_avatar": "https://pbs.twimg.com/profile_images/1917825669825966080/2bAp4kVv_200x200.jpg", // The URL to the avatar for the creator
      "interactions_24h": 19157, // Number of interactions in the last 24 hours
      "interactions_total": 19157 // Number of total interactions
    }
  ]
}

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": "tiktok::6760381874016912390", // The [network]::[unique_id] for the influencer
      "creator_name": "livbedumb", // The unique screen name for the influencer
      "creator_avatar": "https://p16-common-sign.tiktokcdn.com/tos-maliva-avt-0068/7310859312619782150~tplv-tiktokx-cropcenter:100:100.webp?dr=14579&refresh_token=2c86b8fa&x-expires=1781510400&x-signature=zk808PT1Cuczgrxa7dRcsEnPN%2BU%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=sg1", // The URL to the avatar for the creator
      "creator_followers": 27107580, // number of followers the account has
      "creator_rank": 1, // ranking based on all posts in the last 24 hours that have interactions
      "interactions_24h": 137775416 // Number of interactions in the last 24 hours
    }
  ]
}

Schema:


Categories List

https://lunarcrush.com/api4/public/categories/list/v1

Get a list of trending social categories.

Example request:

curl -H "Authorization: Bearer <API_KEY>" https://lunarcrush.com/api4/public/categories/list/v1

Example response:

{
  "data": [
    {
      "category": "pga golfers", // LunarCrush social category. Can only includes letters, numbers and spaces
      "title": "PGA Golfers", // The case sensitive title of the topic or category
      "category_rank": 31, // LunarCrush metric for ranking a social topic relative to all other social topics
      "category_rank_1h_previous": 31, // The topic rank from 1 hour ago
      "category_rank_24h_previous": 32, // The topic rank from 24 hours ago
      "num_contributors": 6088, // The number of unique social contributors to the topic
      "social_dominance": 0.06944577579172138, // The percent of the total social volume that this topic represents
      "num_posts": 16805, // Total number of posts with interactions on this topic in the last 24 hours
      "interactions_24h": 106411518 // Number of interactions in the last 24 hours
    }
  ]
}

Schema:


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": "fifaworldcup", // The unique screen name for the influencer
      "creator_display_name": "FIFA World Cup", // The chosen display name for the influencer if available
      "creator_id": "7059636734342038534", // The [network]::[unique_id] for the influencer
      "creator_network": "tiktok", // The social network for the post or influencer. We still refer to x as twitter out of developer preference.
      "creator_avatar": "https://p16-common-sign.tiktokcdn.com/tos-useast2a-avt-0068-euttp/d260685754e3ae8139f47e7ec9fda7e9~tplv-tiktokx-cropcenter:100:100.webp?dr=14579&refresh_token=d56ded1f&x-expires=1783944000&x-signature=Ow6TccSBXWT1RHAX8lSzZeSPDhM%3D&t=4d5b0474&ps=13740610&shp=d05b14bd&shcp=34ff8df6&idc=sg1", // The URL to the avatar for the creator
      "creator_followers": 82425563, // number of followers the account has
      "creator_posts": 507, // total number of posts with interactions in the last 24 hours
      "creator_rank": 1, // ranking based on all posts in the last 24 hours that have interactions
      "interactions_24h": 1028116546 // Number of interactions in the last 24 hours
    }
  ]
}

Schema:


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", // The [network]::[unique_id] for the influencer
    "creator_name": "elonmusk", // The unique screen name for the influencer
    "creator_display_name": "Elon Musk", // The chosen display name for the influencer if available
    "creator_avatar": "https://pbs.twimg.com/profile_images/2053244804520427520/m8mdWZCG_200x200.jpg", // The URL to the avatar for the creator
    "creator_followers": 240828007, // number of followers the account has
    "creator_rank": "279", // ranking based on all posts in the last 24 hours that have interactions
    "interactions_24h": 48304187, // Number of interactions in the last 24 hours
    "topic_influence": [ // an array of social topics and the creators ranking on each topic
      {
        "topic": "elon musk", // LunarCrush social topic. Can only includes letters, numbers, spaces, #, and $
        "count": 94,
        "percent": 4.18
      }
    ],
    "top_community": [] // an array of the top accounts that have recently mentioned this creator or that this creator has mentioned
  }
}

Schema:


Creator Time Series

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

Get time series data on a creator.

input parameters:

Example request:

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

Example response:

{
  "config": { // This includes the inputs for the request processed by the server and may include additional hints about the request and response information.
    "network": "twitter", // The social network for the post or influencer. We still refer to x as twitter out of developer preference.
    "influencer_id": "twitter::988992203568562176",
    "interval": "1w", // Typically used for specifying time intervals like 1w = 1 week, 1m = 1 month etc
    "start": 1783209600, // Start/from unix timestamp (in seconds)
    "end": 1783900800, // End/to unix timestamp (in seconds)
    "bucket": "hour", // Data is generally bucketed into hours or days
    "name": "LunarCrush", // The full name of the asset
    "generated": 1783883727 // A unix timestamp (in seconds) when the data was generated to understand possibly stale data
  },
  "data": [
    {
      "time": 1783209600, // A unix timestamp (in seconds)
      "followers": 302013, // The number of publicly displayed followers the creator has
      "interactions": 2326, // number of all publicly measurable interactions on a social post (views, likes, comments, thumbs up, upvote, share etc)
      "posts_active": 54, // number of unique social posts with interactions
      "posts_created": 1, // number of unique social posts created
      "creator_rank": 160909 // ranking based on all posts in the last 24 hours that have interactions
    }
  ]
}

Schema:


Creator Posts

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

Get the top posts for a specific creator. If start time is provided the result will be the top posts by interactions for the time range. If start is not provided it will be the most recent top posts by interactions from the last 24 hours.

input parameters:

Example request:

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

Example response:

{
  "data": [
    {
      "id": "152763084488982531", // Unique id of the social post
      "post_type": "tweet", // The type of social post
      "post_title": "SpaceX has Boeing, Lockheed, Europe (Ariane) and Russia (Proton/Soyuz) near checkmate in rocket technology. End game is all about China.", // The title text of the social post
      "post_created": 1325256532, // The unix timestamp of our best indication of when the post was created
      "post_sentiment": 3.16, // The sentiment of the post is a score between 1 and 5 with 1 being very negative, 3 being neutral, and 5 being very positive. A score of 3.5 is considered slightly positive.
      "post_link": "https://x.com/elonmusk/status/152763084488982531", // The URL to view the social post on the social network
      "creator_id": "twitter::44196397", // The [network]::[unique_id] for the influencer
      "creator_name": "elonmusk", // The unique screen name for the influencer
      "creator_display_name": "Elon Musk", // The chosen display name for the influencer if available
      "creator_followers": 240826493, // number of followers the account has
      "creator_avatar": "https://pbs.twimg.com/profile_images/2053244804520427520/m8mdWZCG_200x200.jpg", // The URL to the avatar for the creator
      "interactions_24h": 508, // Number of interactions in the last 24 hours
      "interactions_total": 1889 // Number of total interactions
    }
  ]
}

Schema:


Posts

https://lunarcrush.com/api4/public/posts/:post_type/:post_id/v1

Get details of a post

input parameters:

Example request:

curl -H "Authorization: Bearer <API_KEY>" https://lunarcrush.com/api4/public/posts/tweet/1756378079893782591/v1

Example response:

{
  "type": "tweet", // Type of item or social network of item e.g. tweet, youtube-video, tiktok, x, youtube, category, topic, creator/influencer
  "id": "1756378079893782591", // Unique id of the social post
  "title": "Social activity is 👆 across the board today. \n\n🤔 What are y'all talking about? \n🫡 We've got you covered.\n\n👩‍💻 Technology\n💬 Social Networks\n👨‍🎤 Musicians\n🕺 Celebrities\n🌏 Countries\n🎮 Gaming\n🏖️ Travel\n🚗 Automotive\n🥷 Cryptocurrencies\n🇺🇸 US Election\n\n🚀 https://t.co/AI5yuZEyi7 https://t.co/T0mqJBiyx0", // Title of the social post
  "description": null, // Explanation of the change and the potential impact
  "extraText": "https://lunarcrush.com/categories?rpp=300&page=1&cols=topic_rank%2Ccontributors_active%2Cposts_active%2Caverage_sentiment%2Cinteractions_24h%2Cinteractions_trend", // Extra text for the post for search matching like the retweet text or text included in the video
  "metrics": { // Comma separated list of metrics to include or that are included
    "bookmarks": 1,
    "favorites": 18,
    "retweets": 3,
    "replies": 12,
    "views": 13009
  },
  "image": { // Provides the url/src width and height of a the image in the post if available
    "src": "https://pbs.twimg.com/media/GF_n3GQaoAA23sT.jpg",
    "width": 2048,
    "height": 989
  },
  "video": null, // Provides the url/src width and height of a the video in the post if available
  "images": null, // Provides the url/src width and height of a the images in the post if available
  "creator_id": "twitter::988992203568562176", // The [network]::[unique_id] for the influencer
  "creator_name": "LunarCrush", // The unique screen name for the influencer
  "creator_display_name": "LunarCrush", // The chosen display name for the influencer if available
  "creator_avatar": "https://pbs.twimg.com/profile_images/1958717678476304384/CbzjwJvB_200x200.png", // The URL to the avatar for the creator
  "topics": [
    "lunarcrush"
  ],
  "categories": [] // an array of categories this topic aggregates into
}

Schema:


Posts Time Series

https://lunarcrush.com/api4/public/posts/:post_type/:post_id/time-series/v1

Get interactions over time for a post. If a post is older than 365 days the time series will be returned as daily interactions, otherwise it hourly interactions

input parameters:

Example request:

curl -H "Authorization: Bearer <API_KEY>" https://lunarcrush.com/api4/public/posts/tweet/1756378079893782591/time-series/v1

Example response:

{
  "data": [
    {
      "time": "1707523200", // A unix timestamp (in seconds)
      "interactions": 853 // number of all publicly measurable interactions on a social post (views, likes, comments, thumbs up, upvote, share etc)
    }
  ]
}

Schema:


Coins List v2

https://lunarcrush.com/api4/public/coins/list/v2

Get a general snapshot of LunarCrush metrics on the entire list of tracked coins. It is designed as a lightweight mechanism for monitoring the universe of available assets, either in aggregate or relative to each other. Metrics include Galaxy Score™, AltRank™, price, volatility, 24h percent change, market cap, social mentions, social interactions, social contributors, social dominance, and categories.

input parameters:

Example request:

curl -H "Authorization: Bearer <API_KEY>" https://lunarcrush.com/api4/public/coins/list/v2

Example response:

{
  "config": { // This includes the inputs for the request processed by the server and may include additional hints about the request and response information.
    "sort": "market_cap_rank",
    "desc": true,
    "limit": 0,
    "page": 0,
    "total_rows": 5568,
    "generated": 1783883727 // A unix timestamp (in seconds) when the data was generated to understand possibly stale data
  },
  "data": [
    {
      "id": 163049, // LunarCrush internal ID for the asset
      "symbol": "HOODCAT", // The symbol for the asset
      "name": "HOODCAT", // The full name of the asset
      "price": 18742.9315693606, // Current price in USD
      "price_btc": 0.29206340508472056, // Current price in BTC
      "volume_24h": 29282722.96, // Volume in USD for 24 hours up to this data point
      "volatility": 1.7419, // Volatility is calculated as the standard deviation of the price.
      "circulating_supply": 0, // Circulating Supply is the total number of coins or tokens that are actively available for trade and are being used in the market and in general public
      "max_supply": null, // The maximum supply of the asset if available
      "percent_change_1h": 442.926, // Percent change in price since 1 hour ago
      "percent_change_24h": 1698632957.138, // Percent change in price since 24 hours ago
      "percent_change_7d": 442.925544857643, // Percent change in price since 7 days ago
      "market_cap": 18742931569360.6, // Total dollar market value of all circulating supply or outstanding shares
      "market_cap_rank": 1, // The rank of the asset by market cap with additional filtering to remove outliers and bad market data.
      "interactions_24h": 29972, // Number of interactions in the last 24 hours
      "social_volume_24h": 113, // Total number of posts with interactions on this topic in the last 24 hours
      "social_dominance": 0.024049563383369197, // The percent of the total social volume that this topic represents
      "market_dominance": 851.2723800045106, // The percent of the total market cap that this asset represents
      "market_dominance_prev": 849.0262851632524,
      "galaxy_score": 71, // A proprietary score based on technical indicators of price, average social sentiment, relative social activity, and a factor of how closely social indicators correlate with price and volume
      "galaxy_score_previous": 62, // The galaxy score from the previous 24 hours
      "alt_rank": 17, // A proprietary score based on how an asset is performing relative to all other assets supported
      "sentiment": 88, // % of posts (weighted by interactions) that are positive. 100% means all posts are positive, 50% is half positive and half negative, and 0% is all negative posts.
      "topic": "hoodcat hoodcat", // LunarCrush social topic. Can only includes letters, numbers, spaces, #, and $
      "logo": "https://cdn.lunarcrush.com/hoodcat.png" // The URL to the logo for the asset, topic, or category
    }
  ]
}

Schema:


Coins List

https://lunarcrush.com/api4/public/coins/list/v1

Get a general snapshot of LunarCrush metrics on the entire list of tracked coins. This version is heavily cached and up to 1 hour behind. It is designed as a lightweight mechanism for monitoring the universe of available assets, either in aggregate or relative to each other. Metrics include Galaxy Score™, AltRank™, price, volatility, 24h percent change, market cap, social mentions, social interactions, social contributors, social dominance, and categories. Use the coins/list/v2 endpoint for data updated every few seconds.

input parameters:

Example request:

curl -H "Authorization: Bearer <API_KEY>" https://lunarcrush.com/api4/public/coins/list/v1

Example response:

{
  "config": { // This includes the inputs for the request processed by the server and may include additional hints about the request and response information.
    "sort": "market_cap_rank",
    "desc": true,
    "limit": 0,
    "page": 0,
    "total_rows": 5568,
    "generated": 1783883727 // A unix timestamp (in seconds) when the data was generated to understand possibly stale data
  },
  "data": [
    {
      "id": 163049, // LunarCrush internal ID for the asset
      "symbol": "HOODCAT", // The symbol for the asset
      "name": "HOODCAT", // The full name of the asset
      "price": 18742.9315693606, // Current price in USD
      "price_btc": 0.29206340508472056, // Current price in BTC
      "volume_24h": 29282722.96, // Volume in USD for 24 hours up to this data point
      "volatility": 1.7419, // Volatility is calculated as the standard deviation of the price.
      "circulating_supply": 0, // Circulating Supply is the total number of coins or tokens that are actively available for trade and are being used in the market and in general public
      "max_supply": null, // The maximum supply of the asset if available
      "percent_change_1h": 442.926, // Percent change in price since 1 hour ago
      "percent_change_24h": 1698632957.138, // Percent change in price since 24 hours ago
      "percent_change_7d": 442.925544857643, // Percent change in price since 7 days ago
      "market_cap": 18742931569360.6, // Total dollar market value of all circulating supply or outstanding shares
      "market_cap_rank": 1, // The rank of the asset by market cap with additional filtering to remove outliers and bad market data.
      "interactions_24h": 29972, // Number of interactions in the last 24 hours
      "social_volume_24h": 113, // Total number of posts with interactions on this topic in the last 24 hours
      "social_dominance": 0.024049563383369197, // The percent of the total social volume that this topic represents
      "market_dominance": 851.2723800045106, // The percent of the total market cap that this asset represents
      "market_dominance_prev": 849.0262851632524,
      "galaxy_score": 71, // A proprietary score based on technical indicators of price, average social sentiment, relative social activity, and a factor of how closely social indicators correlate with price and volume
      "galaxy_score_previous": 62, // The galaxy score from the previous 24 hours
      "alt_rank": 17, // A proprietary score based on how an asset is performing relative to all other assets supported
      "sentiment": 88, // % of posts (weighted by interactions) that are positive. 100% means all posts are positive, 50% is half positive and half negative, and 0% is all negative posts.
      "topic": "hoodcat hoodcat", // LunarCrush social topic. Can only includes letters, numbers, spaces, #, and $
      "logo": "https://cdn.lunarcrush.com/hoodcat.png" // The URL to the logo for the asset, topic, or category
    }
  ]
}

Schema:


Coins

https://lunarcrush.com/api4/public/coins/:coin/v1

Get market data on a coin or token. Specify the coin to be queried by providing the numeric ID or the symbol of the coin in the input parameter, which can be found by calling the /coins/list endpoint.

input parameters:

Example request:

curl -H "Authorization: Bearer <API_KEY>" https://lunarcrush.com/api4/public/coins/2/v1

Example response:

{
  "config": { // This includes the inputs for the request processed by the server and may include additional hints about the request and response information.
    "id": "coins:2", // LunarCrush internal ID for the asset
    "_self_call": true,
    "name": "Ethereum", // The full name of the asset
    "symbol": "ETH", // The symbol for the asset
    "topic": "ethereum", // LunarCrush social topic. Can only includes letters, numbers, spaces, #, and $
    "generated": 1783883727 // A unix timestamp (in seconds) when the data was generated to understand possibly stale data
  },
  "data": {
    "id": 2, // LunarCrush internal ID for the asset
    "name": "Ethereum", // The full name of the asset
    "symbol": "ETH", // The symbol for the asset
    "price": 1820.3742922664474, // Current price in USD
    "price_btc": 0.028378760907931934, // Current price in BTC
    "market_cap": 219708542992, // Total dollar market value of all circulating supply or outstanding shares
    "percent_change_24h": -0.226956503849, // Percent change in price since 24 hours ago
    "percent_change_7d": 2.143089654902, // Percent change in price since 7 days ago
    "percent_change_30d": 9.111920779029, // Percent change in price since 30 days ago
    "volume_24h": 6451366323.43, // Volume in USD for 24 hours up to this data point
    "max_supply": null, // The maximum supply of the asset if available
    "circulating_supply": 120683028.19, // Circulating Supply is the total number of coins or tokens that are actively available for trade and are being used in the market and in general public
    "close": 1820.3742922664474, // Close price for the time period
    "galaxy_score": 53.9, // A proprietary score based on technical indicators of price, average social sentiment, relative social activity, and a factor of how closely social indicators correlate with price and volume
    "alt_rank": 75, // A proprietary score based on how an asset is performing relative to all other assets supported
    "volatility": 0.006, // Volatility is calculated as the standard deviation of the price.
    "market_cap_rank": 3 // The rank of the asset by market cap with additional filtering to remove outliers and bad market data.
  }
}

Schema:


Coins Time Series

https://lunarcrush.com/api4/public/coins/:coin/time-series/v2

Get market time series data on a coin or token. Specify the coin to be queried by providing the numeric ID or the symbol of the coin in the input parameter, which can be found by calling the /coins/list endpoint.

input parameters:

Example request:

curl -H "Authorization: Bearer <API_KEY>" https://lunarcrush.com/api4/public/coins/2/time-series/v2

Example response:

{
  "config": { // This includes the inputs for the request processed by the server and may include additional hints about the request and response information.
    "coin": "2",
    "topic": "ethereum", // LunarCrush social topic. Can only includes letters, numbers, spaces, #, and $
    "id": "coins:2", // LunarCrush internal ID for the asset
    "_self_call": true,
    "name": "Ethereum", // The full name of the asset
    "symbol": "ETH", // The symbol for the asset
    "interval": "1w", // Typically used for specifying time intervals like 1w = 1 week, 1m = 1 month etc
    "start": 1783209600, // Start/from unix timestamp (in seconds)
    "end": 1783890927, // End/to unix timestamp (in seconds)
    "bucket": "hour", // Data is generally bucketed into hours or days
    "metrics": [], // Comma separated list of metrics to include or that are included
    "generated": 1783883727 // A unix timestamp (in seconds) when the data was generated to understand possibly stale data
  },
  "data": [
    {
      "time": 1783209600, // A unix timestamp (in seconds)
      "contributors_active": 12082, // number of unique social accounts with posts that have interactions
      "contributors_created": 239, // number of unique social accounts that created new posts
      "interactions": 6053404, // number of all publicly measurable interactions on a social post (views, likes, comments, thumbs up, upvote, share etc)
      "posts_active": 23630, // number of unique social posts with interactions
      "posts_created": 533, // number of unique social posts created
      "sentiment": 75, // % of posts (weighted by interactions) that are positive. 100% means all posts are positive, 50% is half positive and half negative, and 0% is all negative posts.
      "spam": 2479, // The number of posts created that are considered spam
      "alt_rank": 63, // A proprietary score based on how an asset is performing relative to all other assets supported
      "circulating_supply": 120683241, // Circulating Supply is the total number of coins or tokens that are actively available for trade and are being used in the market and in general public
      "close": 1773.46, // Close price for the time period
      "galaxy_score": 61, // A proprietary score based on technical indicators of price, average social sentiment, relative social activity, and a factor of how closely social indicators correlate with price and volume
      "high": 1773.46, // Higest price fo rthe time period
      "low": 1773.46, // Lowest price for the time period
      "market_cap": 214204915951, // Total dollar market value of all circulating supply or outstanding shares
      "market_dominance": 9.8063, // The percent of the total market cap that this asset represents
      "open": 1773.46, // Open price for the time period
      "social_dominance": 9.8657, // The percent of the total social volume that this topic represents
      "volume_24h": 8011828410 // Volume in USD for 24 hours up to this data point
    }
  ]
}

Schema:


Coins Meta

https://lunarcrush.com/api4/public/coins/:coin/meta/v1

Get meta information for a cryptocurrency project. This includes information such as the website, social media links, and other information.

input parameters:

Example request:

curl -H "Authorization: Bearer <API_KEY>" https://lunarcrush.com/api4/public/coins/2/meta/v1

Example response:

{
  "data": {
    "id": 2, // LunarCrush internal ID for the asset
    "name": "Ethereum", // The full name of the asset
    "symbol": "ETH", // The symbol for the asset
    "market_categories": "layer-1",
    "updated": 1741059248, // Timestamp of when the data was last updated
    "blockchain": [
      {
        "type": "layer1", // Type of item or social network of item e.g. tweet, youtube-video, tiktok, x, youtube, category, topic, creator/influencer
        "network": "ethereum", // The social network for the post or influencer. We still refer to x as twitter out of developer preference.
        "address": null,
        "decimals": null
      }
    ],
    "short_summary": "Ethereum is open access to digital money and data-friendly services for everyone – no matter your background or location. It's a community-built technology behind the cryptocurrency ether (ETH) and thousands of applications you can use today.",
    "description": "Ethereum is a technology that lets you send cryptocurrency to anyone for a small fee. It also powers applications that everyone can use and no one can take down.\n\nIt's the world's programmable blockchain.\n\nEthereum builds on Bitcoin's innovation, with some big differences.\n\nBoth let you use digital money without payment providers or banks. But Ethereum is programmable, so you can also use it for lots of different digital assets – even Bitcoin!\n\nThis also means Ethereum is for more than payments. It's a marketplace of financial services, games and apps that can't steal your data or censor you.", // Explanation of the change and the potential impact
    "github_link": "https://github.com/ethereum",
    "website_link": "https://www.ethereum.org/",
    "whitepaper_link": "https://ethereum.org/en/whitepaper",
    "twitter_link": "https://twitter.com/ethereum",
    "reddit_link": "https://www.reddit.com/r/ethereum/",
    "header_image": "headers/ethereum.png",
    "header_text": "The foundation for our digital future",
    "videos": "https://www.youtube.com/watch?v=GQR1xjQn5Pg",
    "coingecko_link": "https://www.coingecko.com/en/coins/ethereum",
    "coinmarketcap_link": "https://coinmarketcap.com/currencies/ethereum/"
  },
  "config": { // This includes the inputs for the request processed by the server and may include additional hints about the request and response information.
    "coin": "2",
    "generated": 1783883727 // A unix timestamp (in seconds) when the data was generated to understand possibly stale data
  }
}

Schema:


Stocks List v2

https://lunarcrush.com/api4/public/stocks/list/v2

Get a general snapshot of LunarCrush metrics on the entire list of tracked stocks. It is designed as a lightweight mechanism for monitoring the universe of available assets, either in aggregate or relative to each other. Metrics include Galaxy Score™, AltRank™, floor price, 24h percent change, market cap, social mentions, social interactions, social contributors, social dominance, and categories.

input parameters:

Example request:

curl -H "Authorization: Bearer <API_KEY>" https://lunarcrush.com/api4/public/stocks/list/v2

Example response:

{
  "config": { // This includes the inputs for the request processed by the server and may include additional hints about the request and response information.
    "limit": 0,
    "sort": "market_cap_rank",
    "desc": true,
    "page": 0,
    "total_rows": 4259,
    "generated": 1783883727 // A unix timestamp (in seconds) when the data was generated to understand possibly stale data
  },
  "data": [
    {
      "id": 6561, // LunarCrush internal ID for the asset
      "symbol": "MSFT", // The symbol for the asset
      "name": "Microsoft Corporation", // The full name of the asset
      "price": 385.1, // Current price in USD
      "volume_24h": 0, // Volume in USD for 24 hours up to this data point
      "percent_change_24h": 0.19253, // Percent change in price since 24 hours ago
      "market_cap": 2860688393000, // Total dollar market value of all circulating supply or outstanding shares
      "market_cap_rank": 1, // The rank of the asset by market cap with additional filtering to remove outliers and bad market data.
      "interactions_24h": 119445792, // Number of interactions in the last 24 hours
      "social_volume_24h": 31929, // Total number of posts with interactions on this topic in the last 24 hours
      "social_dominance": 2.8127535455635417, // The percent of the total social volume that this topic represents
      "market_dominance": 2.91700669895379, // The percent of the total market cap that this asset represents
      "market_dominance_prev": 2.9243121844489375,
      "galaxy_score": 58.5, // A proprietary score based on technical indicators of price, average social sentiment, relative social activity, and a factor of how closely social indicators correlate with price and volume
      "galaxy_score_previous": 62, // The galaxy score from the previous 24 hours
      "alt_rank": 644, // A proprietary score based on how an asset is performing relative to all other assets supported
      "alt_rank_previous": 400, // The alt rank from the previous 24 hours
      "sentiment": 71, // % of posts (weighted by interactions) that are positive. 100% means all posts are positive, 50% is half positive and half negative, and 0% is all negative posts.
      "categories": "technology", // an array of categories this topic aggregates into
      "topic": "msft microsoft corporation", // LunarCrush social topic. Can only includes letters, numbers, spaces, #, and $
      "logo": "https://cdn.lunarcrush.com/stocks/msft.png" // The URL to the logo for the asset, topic, or category
    }
  ]
}

Schema:


Stocks List

https://lunarcrush.com/api4/public/stocks/list/v1

Lists all stocks supported by LunarCrush. Includes the "topic" endpoint to use to get social data from this asset as a social topic.

input parameters:

Example request:

curl -H "Authorization: Bearer <API_KEY>" https://lunarcrush.com/api4/public/stocks/list/v1

Example response:

{
  "config": { // This includes the inputs for the request processed by the server and may include additional hints about the request and response information.
    "sort": "market_cap_rank",
    "desc": true,
    "limit": 0,
    "page": 0,
    "total_rows": 4259,
    "generated": 1783883727 // A unix timestamp (in seconds) when the data was generated to understand possibly stale data
  },
  "data": [
    {
      "id": 6561, // LunarCrush internal ID for the asset
      "symbol": "MSFT", // The symbol for the asset
      "name": "Microsoft Corporation", // The full name of the asset
      "price": 385.1, // Current price in USD
      "volume_24h": 0, // Volume in USD for 24 hours up to this data point
      "percent_change_24h": 0.19253, // Percent change in price since 24 hours ago
      "market_cap": 2860688393000, // Total dollar market value of all circulating supply or outstanding shares
      "market_cap_rank": 1, // The rank of the asset by market cap with additional filtering to remove outliers and bad market data.
      "interactions_24h": 119445792, // Number of interactions in the last 24 hours
      "social_volume_24h": 31929, // Total number of posts with interactions on this topic in the last 24 hours
      "social_dominance": 2.8127535455635417, // The percent of the total social volume that this topic represents
      "market_dominance": 2.91700669895379, // The percent of the total market cap that this asset represents
      "market_dominance_prev": 2.9243121844489375,
      "galaxy_score": 58.5, // A proprietary score based on technical indicators of price, average social sentiment, relative social activity, and a factor of how closely social indicators correlate with price and volume
      "galaxy_score_previous": 62, // The galaxy score from the previous 24 hours
      "alt_rank": 644, // A proprietary score based on how an asset is performing relative to all other assets supported
      "alt_rank_previous": 400, // The alt rank from the previous 24 hours
      "sentiment": 71, // % of posts (weighted by interactions) that are positive. 100% means all posts are positive, 50% is half positive and half negative, and 0% is all negative posts.
      "categories": "technology", // an array of categories this topic aggregates into
      "topic": "msft microsoft corporation", // LunarCrush social topic. Can only includes letters, numbers, spaces, #, and $
      "logo": "https://cdn.lunarcrush.com/stocks/msft.png" // The URL to the logo for the asset, topic, or category
    }
  ]
}

Schema:


Stocks

https://lunarcrush.com/api4/public/stocks/:stock/v1

Get market data on a stock. Specify the coin to be queried by providing the numeric ID or the symbol of the coin in the input parameter, which can be found by calling the /coins/list endpoint.

input parameters:

Example request:

curl -H "Authorization: Bearer <API_KEY>" https://lunarcrush.com/api4/public/stocks/7056/v1

Example response:

{
  "config": { // This includes the inputs for the request processed by the server and may include additional hints about the request and response information.
    "id": "stocks:7056", // LunarCrush internal ID for the asset
    "_self_call": true,
    "name": "NVIDIA Corporation", // The full name of the asset
    "symbol": "NVDA", // The symbol for the asset
    "topic": "$nvda", // LunarCrush social topic. Can only includes letters, numbers, spaces, #, and $
    "generated": 1783883727 // A unix timestamp (in seconds) when the data was generated to understand possibly stale data
  },
  "data": {
    "id": 7056, // LunarCrush internal ID for the asset
    "name": "NVIDIA Corporation", // The full name of the asset
    "symbol": "NVDA", // The symbol for the asset
    "price": 210.96, // Current price in USD
    "market_cap": 5109662160000, // Total dollar market value of all circulating supply or outstanding shares
    "percent_change_24h": 4.03393, // Percent change in price since 24 hours ago
    "volume_24h": 0, // Volume in USD for 24 hours up to this data point
    "close": 210.96, // Close price for the time period
    "market_cap_rank": 1572 // The rank of the asset by market cap with additional filtering to remove outliers and bad market data.
  }
}

Schema:


Stocks Time Series

https://lunarcrush.com/api4/public/stocks/:stock/time-series/v2

Get market time series data on a stock. Specify the stock to be queried by providing the numeric ID or the symbol of the stock in the input parameter, which can be found by calling the /stocks/list endpoint.

input parameters:

Example request:

curl -H "Authorization: Bearer <API_KEY>" https://lunarcrush.com/api4/public/stocks/7056/time-series/v2

Example response:

{
  "config": { // This includes the inputs for the request processed by the server and may include additional hints about the request and response information.
    "stock": "7056",
    "topic": "$nvda", // LunarCrush social topic. Can only includes letters, numbers, spaces, #, and $
    "id": "stocks:7056", // LunarCrush internal ID for the asset
    "_self_call": true,
    "name": "NVIDIA Corporation", // The full name of the asset
    "symbol": "NVDA", // The symbol for the asset
    "interval": "1w", // Typically used for specifying time intervals like 1w = 1 week, 1m = 1 month etc
    "start": 1783209600, // Start/from unix timestamp (in seconds)
    "end": 1783890927, // End/to unix timestamp (in seconds)
    "bucket": "hour", // Data is generally bucketed into hours or days
    "metrics": [], // Comma separated list of metrics to include or that are included
    "generated": 1783883727 // A unix timestamp (in seconds) when the data was generated to understand possibly stale data
  },
  "data": [
    {
      "time": 1783209600, // A unix timestamp (in seconds)
      "alt_rank": 420, // A proprietary score based on how an asset is performing relative to all other assets supported
      "close": 194.83, // Close price for the time period
      "galaxy_score": 54, // A proprietary score based on technical indicators of price, average social sentiment, relative social activity, and a factor of how closely social indicators correlate with price and volume
      "high": 194.83, // Higest price fo rthe time period
      "low": 194.83, // Lowest price for the time period
      "market_cap": 4718977430000, // Total dollar market value of all circulating supply or outstanding shares
      "market_dominance": 4.8405, // The percent of the total market cap that this asset represents
      "open": 194.83, // Open price for the time period
      "social_dominance": 2.5797, // The percent of the total social volume that this topic represents
      "contributors_active": 10613, // number of unique social accounts with posts that have interactions
      "contributors_created": 122, // number of unique social accounts that created new posts
      "interactions": 1913671, // number of all publicly measurable interactions on a social post (views, likes, comments, thumbs up, upvote, share etc)
      "posts_active": 19110, // number of unique social posts with interactions
      "posts_created": 169, // number of unique social posts created
      "sentiment": 77, // % of posts (weighted by interactions) that are positive. 100% means all posts are positive, 50% is half positive and half negative, and 0% is all negative posts.
      "spam": 1982 // The number of posts created that are considered spam
    }
  ]
}

Schema:


https://lunarcrush.com/api4/public/searches/search

Get recently popular social posts matching a single search term or phrase. Optionally configure and test a custom search configuration.

input parameters:

Example request:

curl -H "Authorization: Bearer <API_KEY>" https://lunarcrush.com/api4/public/searches/search

Example response:

{
  "error": "Error: search_json object requires at least 1 valid search term"
}

Schema:


Searches List

https://lunarcrush.com/api4/public/searches/list

List all custom search aggregations.

Example request:

curl -H "Authorization: Bearer <API_KEY>" https://lunarcrush.com/api4/public/searches/list

Example response:

{
  "data": [
    {
      "id": "lc1s5M27Jq", // LunarCrush internal ID for the asset
      "name": "Pump.fun Leaderboard", // The full name of the asset
      "search_json": {
        "terms": [],
        "rollups": [
          "7thy5pzydh311nxye6mecbjus7wcosk1bww2qfh4pump"
        ]
      },
      "priority": true,
      "created": 1749064987
    }
  ]
}

Schema:


Searches Create

https://lunarcrush.com/api4/public/searches/create

Create a custom search aggregation of topics and search terms. Fine tune the posts that get included or excluded. Search terms and configuration cannot be changed once created. If successful returns the new id/slug and the processed search config. Note that search terms will be adjusted and simplified for optimized search and matching.

input parameters:

Example request:

curl -H "Authorization: Bearer <API_KEY>" https://lunarcrush.com/api4/public/searches/create

Example response:

{
  "error": "Error: name is required"
}

Schema:


Searches Update

https://lunarcrush.com/api4/public/searches/:slug/update

Update a custom search aggregation name or priority. Search terms and configuration cannot be changed once created.

input parameters:

Example request:

curl -H "Authorization: Bearer <API_KEY>" https://lunarcrush.com/api4/public/searches/:slug/update

Example response:

{
  "error": "Error: search_json is required"
}

Schema:


Searches Delete

https://lunarcrush.com/api4/public/searches/:slug/delete

Delete a custom search aggregation.

input parameters:

Example request:

curl -H "Authorization: Bearer <API_KEY>" https://lunarcrush.com/api4/public/searches/:slug/delete

Example response:

{
  "error": "Error: That item does not exist"
}

Schema:


Searches

https://lunarcrush.com/api4/public/searches/:slug

See the summary output of a custom search aggregation.

input parameters:

Example request:

curl -H "Authorization: Bearer <API_KEY>" https://lunarcrush.com/api4/public/searches/:slug

Example response:

{
  "error": "Use the topics endpoints to get the latest data like /public/topic/:slug/v1"
}

Schema:


System Changes

https://lunarcrush.com/api4/public/system/changes

Updates to potential changes to historical time series data. Search term changes only impact the most recent 72 hours (hourly) or 3 days (daily) data. "full historical" is a change that may impact the full history of data. Each change provides a description of what is impacted and why.

Example request:

curl -H "Authorization: Bearer <API_KEY>" https://lunarcrush.com/api4/public/system/changes

Example response:

{
  "data": [
    {
      "asset_type": "coins", // One of coins, nfts, stocks, topic or category
      "asset_id": 163051, // The id of the asset (coin, nft, stock, topic, or category)
      "asset_name": "PUMPFUNLIFE (PUMPFUNLIFE)", // The descriptive name of the asset to help identify it
      "change": "search terms established", // The type of change that occurred
      "description": "search criteria initially set for this asset for the purposes of tracking changes over time", // Explanation of the change and the potential impact
      "time": 1783883230 // A unix timestamp (in seconds)
    }
  ]
}

Schema: