/wallet/getassetissuelist REST API Endpoint
身體參數
assetIssue
物件
載入中...
owner_address
載入中...
名稱
載入中...
名稱
載入中...
total_supply
載入中...
trx_num
載入中...
precision
載入中...
num
載入中...
start_time
載入中...
end_time
載入中...
說明
載入中...
url
載入中...
free_asset_net_limit
載入中...
public_free_asset_net_limit
載入中...
public_free_asset_net_usage
載入中...
public_latest_free_net_time
載入中...
退貨
This method returns nothing
請求
1curl https://docs-demo.tron-mainnet.quiknode.pro/wallet/getassetissuelist \2--request GET \3--header 'accept: application/json'
1curl https://docs-demo.tron-mainnet.quiknode.pro/wallet/getassetissuelist \2--request GET \3--header 'accept: application/json'
1const url = 'https://docs-demo.tron-mainnet.quiknode.pro/wallet/getassetissuelist';2const 標頭 = {3'Accept': 'application/json'4};56取得(url, {7method: 'GET',8headers: headers9})10.接著(回應 => response.json())11.接著(結果 => {12控制台.日誌(結果);13})14.catchcatch(錯誤 => {15控制台.錯誤(錯誤);16});17
1const url = 'https://docs-demo.tron-mainnet.quiknode.pro/wallet/getassetissuelist';2const 標頭 = {3'Accept': 'application/json'4};56取得(url, {7method: 'GET',8headers: headers9})10.接著(回應 => response.json())11.接著(結果 => {12控制台.日誌(結果);13})14.catchcatch(錯誤 => {15控制台.錯誤(錯誤);16});17
1匯入 請求23url = 'https://docs-demo.tron-mainnet.quiknode.pro/wallet/getassetissuelist'45標題 = {6'accept': 'application/json'7}89response = requests.get(url, headers=headers)1011if response.status_code == 200:12print(response.json())13else:14print('Request failed with status code:', response.status_code)15
1匯入 請求23url = 'https://docs-demo.tron-mainnet.quiknode.pro/wallet/getassetissuelist'45標題 = {6'accept': 'application/json'7}89response = requests.get(url, headers=headers)1011if response.status_code == 200:12print(response.json())13else:14print('Request failed with status code:', response.status_code)15
1需要 'net/http'2require 'json'3需要 'uri'45url = URI('https://docs-demo.tron-mainnet.quiknode.pro/wallet/getassetissuelist')67http = Net::HTTP.new(url.host, url.port)8http.use_ssl = true910標題 = {11'Accept' => 'application/json'12}1314請求 = 淨::HTTP::Get.new(url)15headers.each { |key, value| request[key] = value }1617回應 = http.請求(請求)1819if response.code.to_i == 20020result = JSON.parse(response.body)21puts result22else23puts "Request failed with status code: #{response.code}"24結束25
1需要 'net/http'2require 'json'3需要 'uri'45url = URI('https://docs-demo.tron-mainnet.quiknode.pro/wallet/getassetissuelist')67http = Net::HTTP.new(url.host, url.port)8http.use_ssl = true910標題 = {11'Accept' => 'application/json'12}1314請求 = 淨::HTTP::Get.new(url)15headers.each { |key, value| request[key] = value }1617回應 = http.請求(請求)1819if response.code.to_i == 20020result = JSON.parse(response.body)21puts result22else23puts "Request failed with status code: #{response.code}"24結束25