curl --request GET \
--url https://api.neynar.com/v2/farcaster/user/verifications/ \
--header 'x-api-key: <api-key>'{
"verifications": [
{
"object": "verification",
"address": "0x5a927ac639636e534b678e81768ca19e2c6280b7",
"protocol": "evm",
"verified_at": "2024-01-01T00:00:00.000Z",
"app": {
"object": "user_dehydrated",
"fid": 3,
"username": "<string>",
"display_name": "<string>",
"pfp_url": "<string>",
"custody_address": "0x5a927ac639636e534b678e81768ca19e2c6280b7",
"score": 123
}
}
]
}Fetch all Ethereum and Solana verified addresses for a farcaster user
curl --request GET \
--url https://api.neynar.com/v2/farcaster/user/verifications/ \
--header 'x-api-key: <api-key>'{
"verifications": [
{
"object": "verification",
"address": "0x5a927ac639636e534b678e81768ca19e2c6280b7",
"protocol": "evm",
"verified_at": "2024-01-01T00:00:00.000Z",
"app": {
"object": "user_dehydrated",
"fid": 3,
"username": "<string>",
"display_name": "<string>",
"pfp_url": "<string>",
"custody_address": "0x5a927ac639636e534b678e81768ca19e2c6280b7",
"score": 123
}
}
]
}API key to authorize requests
FID of the user whose verifications to fetch
x >= 0Success
Show child attributes
verification Address string (hex for ethereum, base58 for solana)
"0x5a927ac639636e534b678e81768ca19e2c6280b7"
Blockchain protocol for the linked wallet: evm for Ethereum/EVM-compatible chains (Base, Optimism, etc.) and solana for Solana
evm, solana "evm"
ISO timestamp when the verification was created
"2024-01-01T00:00:00.000Z"
Show child attributes
user_dehydrated The unique identifier of a farcaster user or app (unsigned integer)
x >= 03
Ethereum address
"0x5a927ac639636e534b678e81768ca19e2c6280b7"
Was this page helpful?