apiTON
HomeExplorerBlog
HomeExplorerBlog
Contact
  1. v2.Address
  • api:TON Documentation
  • 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.Address
    • Transactions
      POST
    • Details
      POST
    • Jettons
      POST
    • NFTs
      POST
    • Wallets
      POST
  • v2.NftContract
    • Mint Nft Collection
      POST
    • Mint NFT
      POST
  • v2.JettonContract
    • Mint
    • Burn
    • Change owner
    • Close Mint
  1. v2.Address

Transactions

POST
/v2.Address/Transactions
Get transactions by address

Request

Body Params application/json
The request message
address
string 
address
optional
Owner address
>= 8 characters<= 256 characters
Default:
EQCD39VS5jcptHL8vMjEXrzGaRcCVYto7HUn4bpAOg8xqB2N
limit
integer 
limit
optional
<= 100
Default:
10
start_after_tx
string 
start_after_tx
optional
transactions after transaction with eq Tx. Is highly recommended to set this parameter with start_after_lt
<= 128 characters
Default:
c52233ffe9ae3e4643752352dfc7163fcc6044a1370a97c0b4f7dd468f6e661b
start_after_lt
number 
start_after_lt
optional
transactions after transaction with eq LT
Default:
47545648000003
end_before_lt
number 
end_before_lt
optional
transactions before transaction with eq LT
Default:
47508876000001
Example
{
  "address": "EQCD39VS5jcptHL8vMjEXrzGaRcCVYto7HUn4bpAOg8xqB2N",
  "limit": "10"
}

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.Address/Transactions' \
--header 'Content-Type: application/json' \
--data-raw '{
  "address": "EQCD39VS5jcptHL8vMjEXrzGaRcCVYto7HUn4bpAOg8xqB2N",
  "limit": "10"
}'

Responses

🟢200OK
application/json
Body
result
array[object (Transaction) {8}] 
optional
tx
string 
tx
optional
transaction hash
time
string <date-time>
optional
A Timestamp represents a point in time independent of any time zone or local
calendar, encoded as a count of seconds and fractions of seconds at
nanosecond resolution. The count is relative to an epoch at UTC midnight on
January 1, 1970, in the proleptic Gregorian calendar which extends the
Gregorian calendar backwards to year one.
All minutes are 60 seconds long. Leap seconds are "smeared" so that no leap
second table is needed for interpretation, using a 24-hour linear
smear
.
The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By
restricting to that range, we ensure that we can convert to and from RFC
3339
date strings.
fee
number 
fee
optional
string type = 5; transaction fee
in
object (Message) 
optional
out
array[object (Message) {10}] 
optional
lt
number 
lt
optional
block
object (BlockID) 
optional
success
boolean 
success
optional
Example
{
    "result": [
        {
            "tx": "256d08a1bb4ce9f26eb88144bb3559a1b295466e1d2a208b6be076909ce85d8c",
            "time": "2024-09-28T14:26:25Z",
            "fee": 0.00004602,
            "in": {
                "time": "2024-09-28T14:26:02Z",
                "amount": 0.5,
                "symbol": "TON",
                "from": "UQBgrjebZvU85NVXjMncFTV5fqkLHoX9jlmTcncwsbqgRhDd",
                "to": "UQCD39VS5jcptHL8vMjEXrzGaRcCVYto7HUn4bpAOg8xqEBI"
            },
            "lt": "49517589000001",
            "block": {
                "shard": "10376293541461622784",
                "seqno": 45931794
            },
            "success": true
        },
        {
            "tx": "e8f5bf43d3bd89e2d26f063f16ffc1855980b095ee8efb5d5764f7a8d794aabb",
            "time": "2024-09-26T23:50:32Z",
            "fee": 0.000002016,
            "in": {
                "operation": "JettonNotify",
                "time": "2024-09-26T23:50:32Z",
                "amount": 6228,
                "symbol": "DOGS",
                "from": "UQCM19onN2dEioXydsBTBIkohrL8GbM1OZojgtDLYwYmNJec",
                "to": "UQCD39VS5jcptHL8vMjEXrzGaRcCVYto7HUn4bpAOg8xqEBI",
                "body": {
                    "amount": "6228000000000",
                    "forward_payload": {
                        "is_right": false,
                        "value": {}
                    },
                    "query_id": 0,
                    "sender": "0:df2a24f4ca6abf29b1dd259949c91f766059624f8f667d44427c14d1d535f298"
                },
                "details": {
                    "decimals": "9",
                    "image": "https://cdn.dogs.dev/dogs.png",
                    "master_address": "UQCvxJy4eG8hyHBFsZ7eePxrRsUQSFE_jpptRAYBmcG_DLxX",
                    "name": "Dogs",
                    "symbol": "DOGS",
                    "uri": "https://cdn.dogs.dev/dogs.json"
                },
                "op_code": 1935855772
            },
            "lt": "49483518000003",
            "block": {
                "shard": "10376293541461622784",
                "seqno": 45903076
            }
        }
    ]
}
🔴500Server Error
Previous
Send Nft
Next
Details
Built with