Lookup a user by custody-address
farcasterUser.getUserByCustodyAddress
Overview
Lookup a user by custody-address
Parameters
custody_address
string
true
ex) 0x63cd09948b05e5d8367226b0c83a16b583862191
Usage
let res = await Lum0x.farcasterUser.getUserByCustodyAddress({
custodyAddress: "0x63cd09948b05e5d8367226b0c83a16b583862191"
});
console.log(JSON.stringify(res, null, 2));
Response
{
"user": {
"object": "user",
"fid": 721870,
"custody_address": "0x63cd09948b05e5d8367226b0c83a16b583862191",
"username": "lum0x",
"display_name": "Lum0x",
"pfp_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/74970e01-bcf7-4ef7-31d7-238f5814b200/original",
"profile": {
"bio": {
"text": "illuminate your builder journey with Lum0x 💡\n\nhttps://lum0x.com/",
"mentioned_profiles": []
}
},
"follower_count": 37,
"following_count": 2,
"verifications": [],
"verified_addresses": {
"eth_addresses": [],
"sol_addresses": []
},
"active_status": "inactive",
"power_badge": false
}
}
0x63cd09948b05e5d8367226b0c83a16b583862191
user
721870
lum0x
Lum0x
illuminate your builder journey with Lum0x 💡\n\nhttps://lum0x.com/
37
2
[]
Eth Addresses: [] Sol Addresses: []
inactive
false
Field Description
Custody Address: The user's wallet address.
Object: The type of data object.
FID: The user's unique identifier.
Username: The user's account name.
Display Name: The user's public name.
Profile Pic URL: The URL of the user's profile picture.
Bio: Information about the user, including introductions and links.
Follower Count: The number of followers the user has.
Following Count: The number of people the user is following.
Verifications: The user's verification information.
Verified ETH Addresses: A list of verified Ethereum addresses.
Verified SOL Addresses: A list of verified Solana addresses.
Active Status: The user's activity status (e.g., active, inactive).
Power Badge: Whether the user holds a power badge.
Last updated