Get Started
- Quickstart
- Frameworks
- LLM Docs
Account Management
Files
Additional Resources
- Community SDKs
- IPFS 101
- Farcaster
User By FID
GET
/
users
/
{fid}
curl --request GET \
--url https://api.pinata.cloud/v3/farcaster/users/{fid} \
--header 'Authorization: Bearer <token>'
{
"user": {
"active_status": "inactive",
"custody_address": "0x7f9a6992a54dc2f23f1105921715bd61811e5b71",
"display_name": "Justin Hunter",
"fid": 4823,
"follower_count": 26787,
"following_count": 924,
"object": "user",
"pfp_url": "https://i.seadn.io/gae/lhGgt7yK1JiBVYz_HBxcAmYLRtP03aw5xKX4FgmFT9Ai7kLD5egzlLvb0lkuRNl28shtjr07DC8IHzLUkTqlWUMndUzC9R5_MSxH3g?w=500&auto=format",
"power_badge": true,
"profile": {
"bio": {
"mentioned_profiles": [],
"text": "Writer. Building @pinatacloud. Tinkering with a Farcaster native alternative to GoodReads: https://readcast.xyz \\ https://polluterofminds.com"
}
},
"username": "polluterofminds",
"verifications": [
"0xcdcdc174901b12e87cc82471a2a2bd6181c89392",
"0x1612c6dff0eb5811108b709a30d8150495ce9cc5"
],
"verified_addresses": {
"eth_addresses": [
"0xcdcdc174901b12e87cc82471a2a2bd6181c89392",
"0x1612c6dff0eb5811108b709a30d8150495ce9cc5"
],
"sol_addresses": []
}
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
FID for the user you are trying to fetch
Example:
4823
Response
200 - application/json
OK
The response is of type object
.
curl --request GET \
--url https://api.pinata.cloud/v3/farcaster/users/{fid} \
--header 'Authorization: Bearer <token>'
{
"user": {
"active_status": "inactive",
"custody_address": "0x7f9a6992a54dc2f23f1105921715bd61811e5b71",
"display_name": "Justin Hunter",
"fid": 4823,
"follower_count": 26787,
"following_count": 924,
"object": "user",
"pfp_url": "https://i.seadn.io/gae/lhGgt7yK1JiBVYz_HBxcAmYLRtP03aw5xKX4FgmFT9Ai7kLD5egzlLvb0lkuRNl28shtjr07DC8IHzLUkTqlWUMndUzC9R5_MSxH3g?w=500&auto=format",
"power_badge": true,
"profile": {
"bio": {
"mentioned_profiles": [],
"text": "Writer. Building @pinatacloud. Tinkering with a Farcaster native alternative to GoodReads: https://readcast.xyz \\ https://polluterofminds.com"
}
},
"username": "polluterofminds",
"verifications": [
"0xcdcdc174901b12e87cc82471a2a2bd6181c89392",
"0x1612c6dff0eb5811108b709a30d8150495ce9cc5"
],
"verified_addresses": {
"eth_addresses": [
"0xcdcdc174901b12e87cc82471a2a2bd6181c89392",
"0x1612c6dff0eb5811108b709a30d8150495ce9cc5"
],
"sol_addresses": []
}
}
}