---
title: "Send fungibles"
method: POST
path: "/v2/farcaster/fungible/send/"
tags: ["Onchain"]
---

# Send fungibles

`POST /v2/farcaster/fungible/send/`

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.

## Headers

- `x-wallet-id` string, required

## Request body

- TransactionSendFungiblesReqBody
  - `fungible_contract_address` string — 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
  - `recipients` TransactionSendFungiblesRecipient[], required
    - `amount` number, required — Amount to send (must be greater than 0)
    - `fid` integer, required — The unique identifier of a farcaster user or app (unsigned integer)

## Response `200`

Success

- TransactionSendFungiblesResponse
  - `send_receipts` TransactionSendFungiblesReceipt[], required
    - `amount` number, required
    - `fid` integer, required — The unique identifier of a farcaster user or app (unsigned integer)
    - `reason` string — Reason for failure (if status is failed)
    - `status` 'sent' | 'failed', required
  - `transactions` TransactionSendTxInfo[], required
    - `approval_hash` string, required — Hash of the transaction that approved the transfer. This is only present if the fungible token is not native token of the network.
    - `gas_used` string, required — Gas used for the transaction.
    - `network` 'base' | 'optimism' | 'base-sepolia', required
    - `transaction_hash` string, required

## Other responses

- `400` — Bad Request
- `500` — Server Error

---

[API](https://skmtc.net/neynar/apis/neynar-api.md) · [All operations](https://skmtc.net/neynar/apis/neynar-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/neynar/neynar-api/versions/dbb91bfb0d1a/schema)
