Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.uniblock.dev/llms.txt

Use this file to discover all available pages before exploring further.

Parameters

chainId
string
default:"toncoin"
required
Unique identifier for a blockchain network.
id
number
default:1
required
Request identifier used to match responses.
jsonrpc
string
default:"2.0"
required
JSON-RPC version.
method
string
default:"getTransactions"
required
JSON-RPC method name.
params
object
required
TON account transaction history request.Parameters for getTransactions:
  • params.address: TON account address.
  • params.limit: Maximum number of transactions to return.
  • params.lt: Logical time of the transaction to start from. Must be sent with hash.
  • params.hash: Transaction hash to start from, in base64 or hex. Must be sent with lt.
  • params.to_lt: Logical time of the transaction to finish at.
  • params.archival: When true, only archival liteservers with full history are used.

Returns

result
array
TON account transactions.
curl --request POST \
  --url https://api.uniblock.dev/uni/v1/json-rpc?chainId=toncoin \
  --header 'content-type: application/json' \
  --data '{
    "id": 1,
    "jsonrpc": "2.0",
    "method": "getTransactions",
    "params": {
      "address": "EQDtFpEwcFAEcRe5mLVh2N6C0x-_hJEM7W61_JLnSF74p4q2",
      "limit": 10
    }
  }'
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": []
}