HTTP API
入门
本文档提供了使用 TON HTTP API 的全面指南,包括 API 端点、请求和响应格式以及错误处理。无论您是构建新应用程序还是与现有应用程序集成,本文档都将帮助您快速高效地开始使用 TON HTTP API。
Similar to previous one but tries to parse additional information for known contract types. This method is based on tonlib's function getAccountState. For detecting wallets we recommend to use getWalletInformation.
Identifier of target TON account in any form.
Retrieve wallet information. This method parses contract state and currently supports more wallet types than getExtendedAddressInformation: simple wallet, standart wallet, v3 wallet, v4 wallet.
Identifier of target TON account in any form.
Get transaction history of a given address.
Identifier of target TON account in any form.
Maximum number of transactions in response.
10
Logical time of transaction to start with, must be sent with hash.
Hash of transaction to start with, in base64 or hex encoding , must be sent with lt.
Logical time of transaction to finish with (to get tx from lt to to_lt).
0
By default getTransaction request is processed by any available liteserver. If archival=true only liteservers with full history are used.
false
Get merkle proof of shardchain block.
Block workchain id
Block shard id
Block seqno
Seqno of masterchain block starting from which proof is required. If not specified latest masterchain block is used.
Look up block by either seqno, lt or unixtime.
Workchain id to look up block in
Shard id to look up block in
Block's height
Block's logical time
Block's unixtime
Get transactions of the given block.
40
Send query - unpacked external message. This method takes address, body and init-params (if any), packs it to external message and sends to network. All params should be boc-serialized.
Address in any format
b64-encoded boc-serialized cell with message body
b64-encoded boc-serialized cell with init-code
""
b64-encoded boc-serialized cell with init-data
""
Estimate fees required for query processing. body, init-code and init-data accepted in serialized format (b64-encoded).
Address in any format
b64-encoded cell with message body
b64-encoded cell with init-code
""
b64-encoded cell with init-data
""
If true during test query processing assume that all chksig operations return True
true
Run get method on smart contract.
Contract address
Method name or method id
Array of stack elements: [['num',3], ['cell', cell_object], ['slice', slice_object]]
All methods in the API are available through JSON-RPC protocol (spec).
{}
Last updated
Was this helpful?