/api/v3/addressInformation RPC Method
查询参数
地址
字符串
必填
正在加载...
use_v2
布尔型
正在加载...
退货
平衡
字符串
正在加载...
代码
字符串
正在加载...
数据
字符串
正在加载...
frozen_hash
字符串
正在加载...
last_transaction_hash
字符串
正在加载...
last_transaction_lt
字符串
正在加载...
状态
字符串
正在加载...
请求
1curl --location 'https://docs-demo.ton-mainnet.quiknode.pro/api/v3/addressInformation?address=EQDtFpEwcFAEcRe5mLVh2N6C0x-_hJEM7W61_JLnSF74p4q2' \2--header 'accept: application/json'
1curl --location 'https://docs-demo.ton-mainnet.quiknode.pro/api/v3/addressInformation?address=EQDtFpEwcFAEcRe5mLVh2N6C0x-_hJEM7W61_JLnSF74p4q2' \2--header 'accept: application/json'
1const myHeaders = new Headers();2myHeaders.追加("accept", "application/json");34const requestOptions = {5方法: "GET",6headers: myHeaders,7重定向: "follow"8};910fetch("https://docs-demo.ton-mainnet.quiknode.pro/api/v3/addressInformation?address=EQDtFpEwcFAEcRe5mLVh2N6C0x-_hJEM7W61_JLnSF74p4q2", requestOptions)
1const myHeaders = new Headers();2myHeaders.追加("accept", "application/json");34const requestOptions = {5方法: "GET",6headers: myHeaders,7重定向: "follow"8};910fetch("https://docs-demo.ton-mainnet.quiknode.pro/api/v3/addressInformation?address=EQDtFpEwcFAEcRe5mLVh2N6C0x-_hJEM7W61_JLnSF74p4q2", requestOptions)
1导入 请求23url = "https://docs-demo.ton-mainnet.quiknode.pro/api/v3/addressInformation?address=EQDtFpEwcFAEcRe5mLVh2N6C0x-_hJEM7W61_JLnSF74p4q2"45有效载荷 = {}6标题 = {7'accept': 'application/json'8}910response = requests.request("GET", url, headers=headers, data=payload)
1导入 请求23url = "https://docs-demo.ton-mainnet.quiknode.pro/api/v3/addressInformation?address=EQDtFpEwcFAEcRe5mLVh2N6C0x-_hJEM7W61_JLnSF74p4q2"45有效载荷 = {}6标题 = {7'accept': 'application/json'8}910response = requests.request("GET", url, headers=headers, data=payload)
1require "uri"2require "net/http"34url = URI("https://docs-demo.ton-mainnet.quiknode.pro/api/v3/addressInformation?address=EQDtFpEwcFAEcRe5mLVh2N6C0x-_hJEM7W61_JLnSF74p4q2")56http = Net::HTTP.new(url.主机, url.端口);7请求 = Net::HTTP::Get.new(url)8请求["接受"] = "application/json"910response = http.request(request)
1require "uri"2require "net/http"34url = URI("https://docs-demo.ton-mainnet.quiknode.pro/api/v3/addressInformation?address=EQDtFpEwcFAEcRe5mLVh2N6C0x-_hJEM7W61_JLnSF74p4q2")56http = Net::HTTP.new(url.主机, url.端口);7请求 = Net::HTTP::Get.new(url)8请求["接受"] = "application/json"910response = http.request(request)