curl --request GET \
--url https://api.neynar.com/v2/farcaster/fungible/trades/ \
--header 'x-api-key: <api-key>'{
"object": "fungible_trades",
"trades": [
{
"object": "trade",
"trader": {
"object": "user_dehydrated",
"fid": 3,
"username": "<string>",
"display_name": "<string>",
"pfp_url": "<string>",
"custody_address": "0x5a927ac639636e534b678e81768ca19e2c6280b7",
"score": 123
},
"transaction": {
"hash": "<string>",
"network": {
"object": "network",
"name": "<string>"
},
"net_transfer": {
"object": "net_transfer",
"receiving_fungible": {
"object": "fungible_balance",
"token": {
"object": "fungible",
"network": "ethereum",
"name": "<string>",
"symbol": "<string>",
"address": "<string>",
"decimals": 123,
"total_supply": "<string>",
"logo": "<string>"
},
"balance": {
"in_usd": 123,
"in_token": "<string>"
}
},
"sending_fungible": {
"object": "fungible_balance",
"token": {
"object": "fungible",
"network": "ethereum",
"name": "<string>",
"symbol": "<string>",
"address": "<string>",
"decimals": 123,
"total_supply": "<string>",
"logo": "<string>"
},
"balance": {
"in_usd": 123,
"in_token": "<string>"
}
}
}
},
"pool": {
"object": "pool",
"address": "<string>",
"protocol_family": "<string>",
"protocol_version": "<string>"
}
}
]
}Get recent trades for a specific fungible within a timeframe. Returns trades ordered by timestamp (most recent first).
curl --request GET \
--url https://api.neynar.com/v2/farcaster/fungible/trades/ \
--header 'x-api-key: <api-key>'{
"object": "fungible_trades",
"trades": [
{
"object": "trade",
"trader": {
"object": "user_dehydrated",
"fid": 3,
"username": "<string>",
"display_name": "<string>",
"pfp_url": "<string>",
"custody_address": "0x5a927ac639636e534b678e81768ca19e2c6280b7",
"score": 123
},
"transaction": {
"hash": "<string>",
"network": {
"object": "network",
"name": "<string>"
},
"net_transfer": {
"object": "net_transfer",
"receiving_fungible": {
"object": "fungible_balance",
"token": {
"object": "fungible",
"network": "ethereum",
"name": "<string>",
"symbol": "<string>",
"address": "<string>",
"decimals": 123,
"total_supply": "<string>",
"logo": "<string>"
},
"balance": {
"in_usd": 123,
"in_token": "<string>"
}
},
"sending_fungible": {
"object": "fungible_balance",
"token": {
"object": "fungible",
"network": "ethereum",
"name": "<string>",
"symbol": "<string>",
"address": "<string>",
"decimals": 123,
"total_supply": "<string>",
"logo": "<string>"
},
"balance": {
"in_usd": 123,
"in_token": "<string>"
}
}
}
},
"pool": {
"object": "pool",
"address": "<string>",
"protocol_family": "<string>",
"protocol_version": "<string>"
}
}
]
}API key to authorize requests
base Contract address
Time window for trades e.g. "1h", "6h", "12h", "24h", "7d"
1h, 6h, 12h, 24h, 7d Minimum USD amount to filter trades
Success
fungible_trades Show child attributes
trade Show child attributes
user_dehydrated The unique identifier of a farcaster user or app (unsigned integer)
x >= 03
Ethereum address
"0x5a927ac639636e534b678e81768ca19e2c6280b7"
Show child attributes
Show child attributes
net_transfer Show child attributes
fungible_balance Show child attributes
fungible A blockchain network e.g. "ethereum", "optimism", "base", "arbitrum"
ethereum, optimism, base, arbitrum The token name e.g. "Ethereum"
The token symbol e.g. "ETH"
The contract address of the token
The number of decimals the token uses
The total supply of the token
The logo URL of the token
Show child attributes
fungible_balance Show child attributes
fungible A blockchain network e.g. "ethereum", "optimism", "base", "arbitrum"
ethereum, optimism, base, arbitrum The token name e.g. "Ethereum"
The token symbol e.g. "ETH"
The contract address of the token
The number of decimals the token uses
The total supply of the token
The logo URL of the token
Was this page helpful?