High-level transfer endpoint that handles nonce, gas, and fee estimation automatically. Supports native and token transfers on EVM and Solana.
EVM: Provide to, value, and chainId. The endpoint auto-fills nonce
(via getTransactionCount), gasLimit (via estimateGas with 20% buffer),
and fee data (maxFeePerGas/gasPrice via getFeeData) if omitted. Transaction
type is auto-detected from chain (EIP-1559 if supported, legacy otherwise).
For ERC-20 transfers, provide tokenAddress — the endpoint encodes the
transfer(address,uint256) calldata automatically.
Solana: Provide to and value (in lamports for SOL, smallest unit for SPL).
For SPL token transfers, also provide tokenAddress (the mint address).
Blockhash is fetched automatically.
Use kind to explicitly declare the transfer type (NATIVE, ERC20, or SPL),
or omit it to infer from the presence of tokenAddress (backwards compatible).
Your partner secret key (server-side only)
UUID for request tracing. Para returns one if omitted.
Unique key for safe retries on POST endpoints. If a request with the same key is received within 24 hours, the original response is returned without re-executing. Recommended format: UUID v4. Max length 256 characters. Returns 422 if the same key is reused with a different request body. Returns 409 if a request with the same key is still being processed.
256Wallet ID
"0a1b2c3d-4e5f-6789-abcd-ef0123456789"
Recipient address
"0x742d35Cc6634C0532925a3b844Bc9e7595f..."
Amount in smallest unit (wei for ETH, lamports for SOL)
"1000000000000000"
Chain ID. Required for EVM wallets, ignored for Solana.
"1"
Transfer type discriminator. EVM wallets accept NATIVE or ERC20.
Solana wallets accept NATIVE or SPL. If omitted, inferred from
tokenAddress presence (backwards compatible).
NATIVE, ERC20, SPL Token contract address. Required when kind is ERC20 or SPL. EVM: ERC-20 contract. Solana: SPL mint address.
Transaction nonce. EVM only — auto-fetched via getTransactionCount if omitted.
x >= 0Gas limit. EVM only — auto-estimated with 20% buffer if omitted.
EIP-1559 max fee per gas. EVM only — auto-fetched if omitted.
EIP-1559 max priority fee per gas. EVM only — auto-fetched if omitted.
Legacy gas price. EVM only — auto-fetched if omitted.
Transaction type: 0 (legacy) or 2 (EIP-1559). EVM only — auto-detected from chain if omitted.
0, 2 Solana network. In production, defaults to SOLANA. In beta, only SOLANA_DEVNET is allowed (and is the default).
SOLANA, SOLANA_DEVNET Whether to broadcast the signed transaction. Defaults to true. Set to false to receive only the signed transaction without broadcasting.
Signed transaction