Retrieve FarScore and FarRank

farcasterMoxie.getFarScoreAndFarRank

Overview

Retrieve FarScore and FarRank from Airstack

Parameters

name
type
required
Note

fid

string

true

"721870"

Usage

let res = await Lum0x.farcasterMoxie.getFarScoreAndFarRank({
    fid: "721870"
});
console.log(JSON.stringify(res, null, 2));

Response

{
  "data": {
    "Socials": {
      "Social": [
        {
          "farcasterScore": {
            "farRank": 119584,
            "farScore": 0.00035160156
          }
        }
      ]
    }
  }
}
Key
Value

farRank

119584

farScore

0.00035160156

Field Description

  • farRank: User's farRank.

  • farScore: User's farScore. farBoost is added.

Last updated