v1

latestOpenAPI 3.0.42026-07-26159287356.1 KB
Onchain

Send fungibles

Send fungibles in bulk to several farcaster users. A funded wallet is to required use this API. React out to us on the Neynar channel on farcaster to get your wallet address.

post/v2/farcaster/fungible/send/

Headers

x-wallet-idstring required

Wallet ID to use for transactions

Request body

fungible_contract_addressstring

Contract address of the fungible token to send. If not provided, the default is the native token of the network.

network'base' | 'optimism' | 'base-sepolia' required

Example request

{
  "fungible_contract_address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
  "recipients": [
    {
      "fid": 3
    }
  ]
}

Response

Success

Example response

{
  "send_receipts": [
    {
      "fid": 3
    }
  ]
}