gettransactionsstd - TON

Example code for the gettransactionsstd JSON-RPC method. Сomplete guide on how to use gettransactionsstd JSON-RPC in GetBlock.io Web3 documentation.

This method is a standardized version of getTransactions that returns transactions in a normalized shape. Use it when you want a stable schema independent of upstream tonlib changes.

Parameters

Parameter
Type
Required
Description

address

string

Yes

Address to query

limit

integer

No

Maximum number of transactions to return (default: 10)

lt

string

No

Logical time of the transaction to start from

hash

string

No

Transaction hash to start from

to_lt

string

No

Logical time to stop at (default: 0)

archival

boolean

No

Whether to use an archival node (default: false)

Request Example

REST (GET):

curl --location --request GET 'https://go.getblock.io/<ACCESS-TOKEN>/getTransactionsStd?address=EQDtFpEwcFAEcRe5mLVh2N6C0x-_hJEM7W61_JLnSF74p4q2&limit=10' \
--header 'Content-Type: application/json'

JSON-RPC (POST):

curl --location --request POST 'https://go.getblock.io/<ACCESS-TOKEN>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "jsonrpc": "2.0",
    "method": "getTransactionsStd",
    "params": {
        "address": "EQDtFpEwcFAEcRe5mLVh2N6C0x-_hJEM7W61_JLnSF74p4q2",
        "limit": 10
    },
    "id": "getblock.io"
}'

Response Example

Response Parameters

Field
Type
Description

result

array

Array of transactions in standardized schema

result[].utime

integer

Unix timestamp at which the transaction was applied

result[].lt

string

Logical time of the transaction

result[].hash

string

Transaction hash (base64)

result[].fee

string

Total fee paid (nanotons)

Use Cases

  • Schema-stable indexers

  • Applications that prefer a normalised transaction shape

  • Cross-version compatibility in tooling pipelines

Error Handling

Status Code
Error Message
Cause

403

Forbidden

Missing or invalid <ACCESS-TOKEN>

422

Validation Error

Request parameters are missing or malformed

429

Too Many Requests

Rate limit exceeded for your plan

504

Lite Server Timeout

Upstream TON liteserver timed out

SDK Integration

Last updated

Was this helpful?