Retrieve a list of users followed by a user

farcasterFollowers.getUsersFollowedByFid

Overview

Retrieve a list of users followed by a user. Can optionally include a viewer_fid and sort_type.

Parameters

name
type
required
Note

fid

number

true

ex) 3

viewer_fid

number

false

ex) 3

sort_type

string

false

"desc_chron" or "algorithmic"

limit

number

false

default: 25, max: 100

cursor

string

false

ex) eyJwYWdlIjoyfQ==

Usage

let res = await Lum0x.farcasterFollowers.getUsersFollowedByFid({
    fid: 721870,
    limit: 3
});
console.log(JSON.stringify(res, null, 2));

Response

{
  "users": [
    {
      "object": "follow",
      "user": {
        "object": "user",
        "fid": 324916,
        "custody_address": "0x478d286fcf81da5030549737eae44c65a7784d5f",
        "username": "degenwtf.eth",
        "display_name": "Degen.wtf🎩🐹🩸",
        "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/f0e91a06-2a85-4a5b-f9ab-0c98f14ecd00/original",
        "profile": {
          "bio": {
            "text": "intern @degenpad | /art-layer 🖼 | Meme Posting Lover | 🟣🔵🎩 | Homage of naiivememe "
          }
        },
        "follower_count": 1312,
        "following_count": 497,
        "verifications": [
          "0xcc825984115b92f05464cb8e69424be39a904373",
          "0x9434d5ed552f880a84d812648d1b63509d831aa7",
          "0x528b5ba6437809f548bcc0ef9c1349f41787b0c6"
        ],
        "verified_addresses": {
          "eth_addresses": [
            "0xcc825984115b92f05464cb8e69424be39a904373",
            "0x9434d5ed552f880a84d812648d1b63509d831aa7",
            "0x528b5ba6437809f548bcc0ef9c1349f41787b0c6"
          ],
          "sol_addresses": []
        },
        "active_status": "inactive",
        "power_badge": false
      }
    },
    {
      "object": "follow",
      "user": {
        "object": "user",
        "fid": 434908,
        "custody_address": "0x8eb55f1501eec37b75051ef93b968aa12b2cfb44",
        "username": "degenpad",
        "display_name": "DegenPad🎩🐹",
        "pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/6acaa881-827f-40bc-5047-9593b1fa7200/rectcrop3",
        "profile": {
          "bio": {
            "text": "Use your $DEGEN Tips, Support new projects on /degenpad $DPAD\n\nWebsite: https://degenpad.app"
          }
        },
        "follower_count": 17128,
        "following_count": 77,
        "verifications": [
          "0xd5a589b294b4a1687554faf18572640e6024efe4"
        ],
        "verified_addresses": {
          "eth_addresses": [
            "0xd5a589b294b4a1687554faf18572640e6024efe4"
          ],
          "sol_addresses": []
        },
        "active_status": "inactive",
        "power_badge": true
      }
    }
  ],
  "next": {
    "cursor": null
  }
}

FID

Username

Display Name

Profile Picture

Bio

Followers

Following

Verified ETH Addresses

Active Status

Power Badge

324916

degenwtf.eth

Degen.wtf🎩🐹🩸

intern @degenpad

/art-layer 🖼

Meme Posting Lover

🟣🔵🎩

Homage of naiivememe

1312

434908

degenpad

DegenPad🎩🐹

Use your $DEGEN Tips, Support new projects on /degenpad $DPAD\n\nWebsite: https://degenpad.app

17128

77

0xd5a589b294b4a1687554faf18572640e6024efe4

inactive

true

Field Description

  • FID: User identifier

  • Username: User's username

  • Display Name: User's display name

  • Profile Picture: URL of the profile picture

  • Bio: User's introduction

  • Followers: Number of followers

  • Following: Number of users the person is following

  • Verified ETH Addresses: Verified Ethereum addresses

  • Active Status: User's activity status

  • Power Badge: Whether the user holds a power badge

Last updated