apiTON
HomeExplorerBlog
HomeExplorerBlog
Contact
  1. v2.Wallet
  • api:TON Documentation
  • v2.Address
    • Transactions
      POST
    • Details
      POST
    • Jettons
      POST
    • NFTs
      POST
    • Wallets
      POST
  • v2.Nft
    • Username
      POST
    • Number
      POST
    • Domain
      POST
    • Gift
      POST
    • Item
      POST
  • v2.Rate
    • Fiat rate
      POST
    • Crypto rate
      POST
    • Exchanges rate
      POST
  • v2.Auth
    • Do
      POST
    • List
      POST
    • Import
      POST
    • Backup
      POST
    • Delete
      POST
    • New
      POST
  • v2.Wallet
    • Send TON
      POST
    • Send Jetton
      POST
    • Send Nft
      POST
  • v2.NftContract
    • Mint Nft Collection
      POST
    • Mint NFT
      POST
  • v2.JettonContract
    • Mint
    • Burn
    • Change owner
    • Close Mint
  1. v2.Wallet

Send TON

POST
/v2.Wallet/Send
v2.Wallet
Send TON to another wallet.
Get 🔑 Authorization token for wallet with your access_token

Request

Header Params
Authorization
string 
optional
get with https://app.apiton.org/v2.Auth/Do
Example:
Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwid2FsbGV0IjoiMDo5MDU3NzRjYTMyMTM0OWI5MzRkZjRmODU1NDliOGI1OWVmZGJlNzJiNTZhYjIzMjMzMzM2NTgyYTk4ZDRhNTkwIiwidmVyc2lvbiI6OSwiZXhwIjoxNzg2MDQ1MjUwLCJpYXQiOjE3MzQyMDUyNTB9.s5nuNAsjCmo6fMgJWq31gYX9CvBlQrnS6q8q52NPk2c
Body Params application/json
address
string 
address
optional
Receiver address
>= 8 characters<= 256 characters
Default:
foundation.ton
amount
number 
amount
optional
Default:
0.01
comment
string 
comment
optional
<= 1024 characters
Default:
send with apiton.org
Example
{
    "address": "foundation.ton",
    "amount": "0.01",
    "comment": "send with apiton.org"
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://app.apiton.org/v2.Wallet/Send' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwid2FsbGV0IjoiMDo5MDU3NzRjYTMyMTM0OWI5MzRkZjRmODU1NDliOGI1OWVmZGJlNzJiNTZhYjIzMjMzMzM2NTgyYTk4ZDRhNTkwIiwidmVyc2lvbiI6OSwiZXhwIjoxNzg2MDQ1MjUwLCJpYXQiOjE3MzQyMDUyNTB9.s5nuNAsjCmo6fMgJWq31gYX9CvBlQrnS6q8q52NPk2c' \
--header 'Content-Type: application/json' \
--data-raw '{
    "address": "foundation.ton",
    "amount": "0.01",
    "comment": "send with apiton.org"
}'

Responses

🟢200OK
application/json
Body
success
boolean 
success
optional
Example
{
    "success": true
}
🔴500Server Error
Previous
New
Next
Send Jetton
Built with