POST
/
farcaster
/
fungible
/
send
curl --request POST \
  --url https://api.neynar.com/v2/farcaster/fungible/send \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --header 'x-wallet-id: <x-wallet-id>' \
  --data '{
  "network": "base",
  "fungible_contract_address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
  "recipients": [
    {
      "fid": 3,
      "amount": 1.00000001
    }
  ]
}'
{
  "send_receipts": [
    {
      "fid": 3,
      "amount": 123,
      "status": "sent",
      "reason": "<string>"
    }
  ],
  "transactions": [
    {
      "network": "base",
      "transaction_hash": "<string>",
      "gas_used": "<string>",
      "approval_hash": "<string>"
    }
  ]
}

Authorizations

x-api-key
string
header
default:NEYNAR_API_DOCS
required

API key to authorize requests

Headers

x-wallet-id
string
required

Wallet ID to use for transactions

Body

application/json

Response

200
application/json

Successful operation.

The response is of type object.