Venly API
Search…
Venly API
👋
Introduction
📝
Changelog
Postman Collection
🔑
Authentication
How to authenticate
How to get a Bearer token
📦
API Products
Wallet API
Create a wallet
Retrieve a wallet
Retrieve a wallet by identifier
Retrieve all wallets
Retrieve wallet balance
Retrieve token balance
Retrieve non-fungible tokens
Transfer a native token
Transfer a fungible token
Transfer a non-fungible token
Swaps
Signatures
Read contract
Execute contract call
Get Tx status
Get fees
Resubmit transaction
Import a wallet
Export a wallet
Update wallet PIN
Archive a wallet
NFT API
NFT Analytics
Market API
⚙️Advanced
Guides
NFT Configuration
🌊Deep dive
Environments & networks
Authentication Bridge
Object Reference
Powered By
GitBook
Transfer a native token
How to perform a basic token transfer. E.g transfer ETH from one wallet to another.
post
https://api-wallet.venly.io
/api/transactions/execute
Transfer a native token
🧙 The destination of a transfer is not limited to a blockchain address, we also support
email addresses
.
Example
Request
POST
:
https
://
api
-
wallet
.
venly
.
io
/
api
/
transactions
/
execute
Request Body
{
"transactionRequest"
:
{
"type"
:
"TRANSFER"
,
"walletId"
:
"944124ed-305d-4e56-a0fd-bce1c7f1537c"
,
"to"
:
"0xf56799d7C95C6DEb708A9f55b2e75A685A94F980"
,
"secretType"
:
"ETHEREUM"
,
"value"
:
0
,
"data"
:
''
//optional
},
"pincode"
:
"1234"
}
Response
{
"success"
:
true
,
"result"
:
{
"transactionHash"
:
"0x8c953e09d8cede9f4eb0d1ee96de4f5a99e31dba7e64312bb252a465de12d10d"
}
}
Object References
TransferRequestDto
ChainSpecificFields
Previous
Retrieve non-fungible tokens
Next
Transfer a fungible token
Last modified
2mo ago
Copy link
Outline
post
Transfer a native token
Example
Object References