Funny Fun
  1. Withdrawals
Funny Fun
  • Overview
  • Token
    • Get tokens
      GET
    • Create token
      POST
    • Create token metadata
      POST
    • Get token holders
      GET
    • Get token
      GET
    • Token charts
      GET
    • Token holders
      GET
    • Token comments
      GET
    • Token comment likes
      POST
    • Token comments
      POST
    • Token favorites
      POST
    • Delete token favorites
      DELETE
  • Authentication
    • Check authentication status
      GET
    • Request nonce for authentication
      POST
  • Withdrawals
    • Get withdrawals
      GET
    • Create withdrawal
      POST
  • Users
    • Get user by address
      GET
    • Update user
      PUT
    • user preference
      PUT
  • Airdrop
    • Airdrop tasks
      GET
    • Airdrop claims
      POST
    • Airdrop leaderboard
      GET
  • Markets
    • Markets
      GET
    • Market buy price
      POST
    • Premarket buy amount
      POST
    • Market buy amount
      POST
    • Market sell price
      POST
    • Market sell amount
      POST
  • Deposits
    • Create deposit
    • list of deposit
  • Config
    GET
  • Blockchains
    GET
  • Orders
    POST
  • Accounts
    GET
  • Trades
    GET
  • Transactions
    GET
  1. Withdrawals

Create withdrawal

POST
/withdrawals
Create withdrawal
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.nusabyte.com/api/v1/withdrawals' \
--header 'Content-Type: application/json' \
--data-raw '{
    "blockchainKey": "evm",
    "tokenId": "1",
    "userAddress": "0xuser123abc4567890def1234567890abcdef5678",
    "requestAmount": "250.5"
}'
Response Response Example
{}

Request

Body Params application/json
blockchainKey
string 
required
The type of blockchain the user is interacting with (e.g., "evm", "solana").
tokenId
string 
required
The ID of the token to be withdrawn (e.g., 'USDT', 'BTC').
userAddress
string 
required
The destination wallet address provided by the user.
requestAmount
string 
required
The amount of tokens to withdraw, represented as a string to preserve precision (e.g., '100.5').
Examples

Responses

🟢200Success
application/json
Body
object {0}
Modified at 2025-04-25 06:40:13
Previous
Get withdrawals
Next
Get user by address
Built with