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

time interactions 2025-11-13 18:00 2025-11-13 19:00 XXX 2025-11-13 20:00 2538 2025-11-13 21:00 1411 2025-11-13 22:00 XXX 2025-11-13 23:00 1613 2025-11-14 00:00 1006 2025-11-14 01:00 XXX 2025-11-14 02:00 XXX 2025-11-14 03:00 XXX 2025-11-14 04:00 XXX 2025-11-14 05:00 XXX 2025-11-14 06:00 XXX

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": "youtube",
      "title": "YouTube",
      "topic_rank": 1,
      "topic_rank_1h_previous": 1,
      "topic_rank_24h_previous": 1,
      "num_contributors": 300985,
      "num_posts": 300985,
      "interactions_24h": 3520437754
    }
  ]
}

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": {
    "topic": "bitcoin",
    "id": "bitcoin",
    "_self_call": true,
    "name": "Bitcoin",
    "symbol": "BTC",
    "interval": "1w",
    "start": 1762387200,
    "end": 1763061909,
    "bucket": "hour",
    "metrics": [],
    "generated": 1763054709
  },
  "data": [
    {
      "time": 1762387200,
      "contributors_active": 28420,
      "contributors_created": 1569,
      "interactions": 3045893,
      "posts_active": 55758,
      "posts_created": 2641,
      "sentiment": 77,
      "spam": 6369,
      "alt_rank": 324,
      "circulating_supply": 19944128,
      "close": 103639.48,
      "galaxy_score": 55,
      "high": 103639.48,
      "low": 103357.43,
      "market_cap": 2065194579244,
      "market_dominance": 59.7702,
      "open": 103639.48,
      "social_dominance": 32.2176,
      "volume_24h": 76049736017
    }
  ]
}

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": {
    "topic": "bitcoin",
    "id": "bitcoin",
    "_self_call": true,
    "name": "Bitcoin",
    "symbol": "BTC",
    "interval": "1w",
    "start": 1762387200,
    "end": 1763061909,
    "bucket": "hour",
    "metrics": [],
    "generated": 1763054709
  },
  "data": [
    {
      "time": 1762387200,
      "contributors_active": 28420,
      "contributors_created": 1569,
      "interactions": 3045893,
      "posts_active": 55758,
      "posts_created": 2641,
      "sentiment": 77,
      "spam": 6369,
      "alt_rank": 324,
      "circulating_supply": 19944128,
      "close": 103639.48,
      "galaxy_score": 55,
      "high": 103639.48,
      "low": 103357.43,
      "market_cap": 2065194579244,
      "market_dominance": 59.7702,
      "open": 103639.48,
      "social_dominance": 32.2176,
      "volume_24h": 76049736017
    }
  ]
}

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 XX hours.

input parameters:

Example request:

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

Example response:

{
  "config": {
    "topic": "bitcoin",
    "type": "topic",
    "id": "bitcoin",
    "_self_call": true,
    "name": "Bitcoin",
    "symbol": "BTC",
    "generated": 1763054709
  },
  "data": [
    {
      "id": "1989006673206259821",
      "post_type": "tweet",
      "post_title": "Luxembourg already converted X% of sovereign wealth fund into bitcoin.\n\nYou can get in now or after they reach 5, XX or 50%.",
      "post_link": "https://x.com/cz_binance/status/1989006673206259821",
      "post_image": null,
      "post_created": 1763051119,
      "post_sentiment": 3.11,
      "creator_id": "twitter::902926941413453824",
      "creator_name": "cz_binance",
      "creator_display_name": "CZ 🔶 BNB",
      "creator_followers": 10481141,
      "creator_avatar": "https://pbs.twimg.com/profile_images/1961440580279336960/PiiIs8Lh_200x200.jpg",
      "interactions_24h": 205909,
      "interactions_total": 212314
    }
  ]
}

Schema: