Get fids that a user has muted

farcasterMute.getMuteListByFid

Overview

Fetches all fids that a user has muted.

Parameters

name
type
required
Note

fid

number

true

ex) 3

limit

number

false

default: 20, max: 100

cursor

string

false

ex) eyJwYWdlIjoyfQ==

Usage

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

Response

{
  "mutes": [
    {
      "object": "mute",
      "muted": {
        "object": "user",
        "fid": 4,
        "custody_address": "0xea384b570a23e806a38148e87e6177028afdbae5",
        "username": "noah",
        "display_name": "Noah Jessop",
        "pfp_url": "https://lh3.googleusercontent.com/gsOZX_CswJw_uh0KBW3WGjWlkCYV2kZfNGezAkCKml54Vm3q_Q2xrJudX6ILYkfKG9I1Q7WvTKAluAQj_yyur_XXSojP29SSp9h9",
        "profile": {
          "bio": {
            "text": "Welcoming you to the Far Side. \n\nManaging Director at Proof Group "
          }
        },
        "follower_count": 914,
        "following_count": 290,
        "verifications": [],
        "verified_addresses": {
          "eth_addresses": [],
          "sol_addresses": []
        },
        "active_status": "inactive",
        "power_badge": false
      },
      "muted_at": "2024-05-17T15:03:58.090Z"
    }
  ],
  "next": {
    "cursor": null
  }
}

Field

Value

Muted User

Fid

4

Username

noah

Display Name

Noah Jessop

Profile Image

Bio

Welcoming you to the Far Side. Managing Director at Proof Group

Follower Count

914

Following Count

290

Verifications

None

Verified Addresses

None

Active Status

Inactive

Power Badge

No

Muted At

2024-05-17T15:03:58.090Z

Field Description

  • Object: Type of data object (in this case, mute)

  • Muted: Information about muted users

  • FID: User's unique identifier

  • Username: Username

  • Display Name: Display name

  • PFP URL: URL of the profile picture

  • Profile: User profile information

  • Bio: Introduction text

  • Text: Content of the introduction text

  • Muted At: Date and time when the user was muted

Last updated