Funny Fun
  1. Authentication
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. Authentication

Request nonce for authentication

POST
/auth-nonce
Request nonce for authentication
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.nusabyte.com/api/v1/auth-nonce' \
--header 'Content-Type: application/json' \
--data-raw '{
    "blockchainType": "solana",
    "userAddress": "GtYQTjgJ64ny3idgisfPctvvesYWfnzBtDqRPT5mUE3s"
}'
Response Response Example
{
    "nonce": "968fa2a2bb4af326a7df0fed76a819cb06a52ffa7800c0dcd1b1d372f920b1af6cac7b4fd65cc3518352ff22ceb23bb9"
}

Request

Body Params application/json
blockchainType
string 
required
The type of blockchain the user is interacting with (e.g., "evm", "solana").
userAddress
string 
required
The user's wallet address on the specified blockchain
Examples

Responses

🟢200OK
application/json
Body
nonce
string 
required
A unique one-time string (nonce) used to prevent replay attacks during authentication
Modified at 2025-04-25 06:46:38
Previous
Check authentication status
Next
Get withdrawals
Built with