Retrieve trending channels based on activity

farcasterChannel.getTrendingChannel

Overview

Returns a list of trending channels based on activity

Parameters

name
type
required
Note

time_window

string

false

"1d", "7d" or "30d"

limit

number

false

default: 10, max: 25

cursor

string

false

ex) eyJwYWdlIjoyfQ==

Usage

let res = await Lum0x.farcasterChannel.getTrendingChannel({
   time_window: "1d",
   limit: 1
});
console.log(JSON.stringify(res, null, 2));

Response

{
  "channels": [
    {
      "object": "channel_activity",
      "cast_count_1d": "78",
      "cast_count_7d": "241",
      "cast_count_30d": "241",
      "channel": {
        "id": "oncoins",
        "url": "https://warpcast.com/~/channel/oncoins",
        "name": "OnCoins Blockchain News",
        "description": "Round-the-clock blockchain news from curated sources by William Mougayar. From https://onblockchain.org",
        "follower_count": 278,
        "object": "channel",
        "image_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/e6081da8-7a8b-4b9f-f94f-a44c100f6700/rectcrop3",
        "created_at": 1724022697,
        "parent_url": "https://warpcast.com/~/channel/oncoins",
        "lead": {
          "object": "user",
          "fid": 1544,
          "custody_address": "0xb1233bc902c37c880e838d5cc21ea776eb8f8f82",
          "username": "wmougayar",
          "display_name": "William Mougayar",
          "pfp_url": "https://i.imgur.com/8Rb24aF.jpg",
          "profile": {
            "bio": {
              "text": "Entrepreneur, angel investor, Author, The Business Blockchain. \nNatural wine, plant-based. \nOnCoins.org wamougayar.xyz GuideMouga.com /oncoins /naturalwines"
            }
          },
          "follower_count": 590,
          "following_count": 215,
          "verifications": [
            "0x52a549d009f554920277052c6c04acf2e25a5988"
          ],
          "verified_addresses": {
            "eth_addresses": [
              "0x52a549d009f554920277052c6c04acf2e25a5988"
            ],
            "sol_addresses": []
          },
          "active_status": "inactive",
          "power_badge": true
        },
        "moderator": null
      }
    }
  ],
  "next": {
    "cursor": "eyJwYXJlbnRfdXJsIjoiaHR0cHM6Ly93YXJwY2FzdC5jb20vfi9jaGFubmVsL29uY29pbnMiLCJjYXN0X2NvdW50XzFkIjoiNzgifQ%3D%3D"
  }
}
Channel ID
Name
Description
Follower Count
Image URL
Lead Display Name
Lead Username
Lead Bio
Lead Follower Count
Lead Following Count
Moderator Display Name
Moderator Username
Moderator Bio
Created At
Parent URL

oncoins

OnCoins Blockchain News

278

William Mougayar

wmougayar

Entrepreneur, angel investor, Author, The Business Blockchain. Natural wine, plant-based. OnCoins.org wamougayar.xyz GuideMouga.com /oncoins /naturalwines

590

215

N/A

N/A

N/A

1724022697

Field Description

  • Channel ID: The unique identifier of the channel.

  • Name: The name of the channel.

  • Description: The description of the channel.

  • Follower Count: The number of followers of the channel.

  • Image URL: The URL of the channel's image.

  • Lead Display Name: The display name of the channel's main contact (lead).

  • Lead Username: The username of the channel's main contact (lead).

  • Lead Bio: The profile description of the channel's main contact (lead).

  • Lead Follower Count: The number of followers of the channel's main contact (lead).

  • Lead Following Count: The number of people the channel's main contact (lead) is following.

  • Moderator Display Name: The display name of the channel's moderator. If there is no moderator, N/A.

  • Moderator Username: The username of the channel's moderator. If there is no moderator, N/A.

  • Moderator Bio: The profile description of the channel's moderator. If there is no moderator, N/A.

  • Created At: The Unix timestamp when the channel was created.

  • Parent URL: The URL of the channel.

Last updated