[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-12-09 17:00 88588 2025-12-09 18:00 13003 2025-12-09 19:00 1494 2025-12-10 02:00 57683 2025-12-10 03:00 3682 2025-12-10 04:00 XXX 2025-12-10 10:00 65127 2025-12-10 11:00 54091 2025-12-10 12:00 71942 2025-12-10 13:00 83990 2025-12-10 14:00 69932 2025-12-10 15:00 6589 2025-12-10 16:00 3322 2025-12-10 17:00 2001 2025-12-10 18:00 13480 2025-12-10 19:00 XXX 2025-12-10 20:00 XXX 2025-12-10 21:00 XXX 2025-12-10 22:00 XXX 2025-12-10 23:00 XXX 2025-12-11 00:00 4336 2025-12-11 01:00 XXX 2025-12-11 02:00 4443 2025-12-11 03:00 XX 2025-12-12 17:00 43311 2025-12-12 18:00 112924 2025-12-12 19:00 3173 2025-12-13 01:00 4817 2025-12-13 02:00 94429 2025-12-13 03:00 3626 2025-12-13 05:00 39884 2025-12-13 06:00 19924 2025-12-13 07:00 2141 2025-12-14 03:00 XXX 2025-12-14 04:00 91829 2025-12-14 05:00 2727 2025-12-14 06:00 X 2025-12-14 07:00 X 2025-12-14 08:00 X 2025-12-14 09:00 X 2025-12-14 10:00 X 2025-12-14 11:00 XX 2025-12-14 12:00 XX 2025-12-15 01:00 100356 2025-12-15 02:00 18485 2025-12-15 03:00 XXX 2025-12-15 04:00 XX 2025-12-15 05:00 XX 2025-12-15 06:00 XX 2025-12-15 07:00 XX 2025-12-15 08:00 X 2025-12-15 09:00 XX 2025-12-15 10:00 XX 2025-12-15 11:00 XX 2025-12-15 12:00 X 2025-12-15 13:00 X 2025-12-15 14:00 XX 2025-12-15 15:00 40699 2025-12-15 16:00 30639 2025-12-15 17:00 1641 2025-12-16 03:00 40952 2025-12-16 04:00 5968 2025-12-16 05: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": 300754,
      "num_posts": 300754,
      "interactions_24h": 2980779418
    }
  ]
}

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": 1764806400,
    "end": 1765493023,
    "bucket": "hour",
    "metrics": [],
    "generated": 1765485823
  },
  "data": [
    {
      "time": 1764806400,
      "contributors_active": 23704,
      "contributors_created": 1429,
      "interactions": 2850530,
      "posts_active": 46702,
      "posts_created": 2732,
      "sentiment": 79,
      "spam": 5826,
      "alt_rank": 215,
      "circulating_supply": 19957250,
      "close": 93033,
      "galaxy_score": 53,
      "high": 93033,
      "low": 92735.28,
      "market_cap": 1856638537230,
      "market_dominance": 58.4039,
      "open": 93033,
      "social_dominance": 28.896,
      "volume_24h": 77427662033
    }
  ]
}

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": 1764806400,
    "end": 1765493023,
    "bucket": "hour",
    "metrics": [],
    "generated": 1765485823
  },
  "data": [
    {
      "time": 1764806400,
      "contributors_active": 23704,
      "contributors_created": 1429,
      "interactions": 2850530,
      "posts_active": 46702,
      "posts_created": 2732,
      "sentiment": 79,
      "spam": 5826,
      "alt_rank": 215,
      "circulating_supply": 19957250,
      "close": 93033,
      "galaxy_score": 53,
      "high": 93033,
      "low": 92735.28,
      "market_cap": 1856638537230,
      "market_dominance": 58.4039,
      "open": 93033,
      "social_dominance": 28.896,
      "volume_24h": 77427662033
    }
  ]
}

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": 1765485823
  },
  "data": [
    {
      "id": "t3_1pk4b3i",
      "post_type": "reddit-post",
      "post_title": "I can’t wait to be rich guys",
      "post_link": "https://redd.it/1pk4b3i",
      "post_image": null,
      "post_created": 1765476409,
      "post_sentiment": 3.36,
      "creator_id": "reddit::t2_1kq495hgxu",
      "creator_name": "Cold-Ad-7980",
      "creator_display_name": "Cold-Ad-7980",
      "interactions_24h": 4752,
      "interactions_total": 4740
    }
  ]
}

Schema: