/wallet/getassetissuelistbyname REST API Endpoint
身體參數
值
字串
必填
載入中...
退貨
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
載入中...
請求
1curl https://docs-demo.tron-mainnet.quiknode.pro/wallet/getassetissuelistbyname \2--header 'accept: application/json' \3--header 'content-type: application/json' \4--data '5{6"value": "62747474657374"7}8'
1curl https://docs-demo.tron-mainnet.quiknode.pro/wallet/getassetissuelistbyname \2--header 'accept: application/json' \3--header 'content-type: application/json' \4--data '5{6"value": "62747474657374"7}8'
1const url = 'https://docs-demo.tron-mainnet.quiknode.pro/wallet/getassetissuelistbyname';2const 標頭 = {3「接受」: 'application/json',4「Content-Type」: 'application/json'5};67const data = {8value: '62747474657374'9};1011取得(url, {12方法: 'POST',13標題: 標頭:,14body: JSON.stringify(data)15})16.接著(回應 => response.json())17.接著(結果 => {18控制台.日誌(結果);19})20.catchcatch(錯誤 => {21控制台.錯誤(錯誤);22});23
1const url = 'https://docs-demo.tron-mainnet.quiknode.pro/wallet/getassetissuelistbyname';2const 標頭 = {3「接受」: 'application/json',4「Content-Type」: 'application/json'5};67const data = {8value: '62747474657374'9};1011取得(url, {12方法: 'POST',13標題: 標頭:,14body: JSON.stringify(data)15})16.接著(回應 => response.json())17.接著(結果 => {18控制台.日誌(結果);19})20.catchcatch(錯誤 => {21控制台.錯誤(錯誤);22});23
1匯入 請求23url = 'https://docs-demo.tron-mainnet.quiknode.pro/wallet/getassetissuelistbyname'45標題 = {6「接受」: 'application/json',7'content-type': 'application/json'8}910資料 = {11'value': '62747474657374'12}1314response = requests.post(url, json=data, headers=headers)1516if response.status_code == 200:17print(response.json())18else:19print('Request failed with status code:', response.status_code)20
1匯入 請求23url = 'https://docs-demo.tron-mainnet.quiknode.pro/wallet/getassetissuelistbyname'45標題 = {6「接受」: 'application/json',7'content-type': 'application/json'8}910資料 = {11'value': '62747474657374'12}1314response = requests.post(url, json=data, headers=headers)1516if response.status_code == 200:17print(response.json())18else:19print('Request failed with status code:', response.status_code)20
1需要 'net/http'2require 'json'3需要 'uri'45url = URI('https://docs-demo.tron-mainnet.quiknode.pro/wallet/getassetissuelistbyname')67http = Net::HTTP.new(url.host, url.port)8http.use_ssl = true910標題 = {11'Accept' => 'application/json',12'Content-Type' => 'application/json'13}1415資料 = {16'value' => '62747474657374'17}1819請求 = 淨::HTTP::POST.new(網址)20請求。正文 = data.to_json21headers.each { |key, value| request[key] = value }2223回應 = http.請求(請求)2425if response.code.to_i == 20026result = JSON.parse(response.body)27puts result28else29puts "Request failed with status code: #{response.code}"30結束31
1需要 'net/http'2require 'json'3需要 'uri'45url = URI('https://docs-demo.tron-mainnet.quiknode.pro/wallet/getassetissuelistbyname')67http = Net::HTTP.new(url.host, url.port)8http.use_ssl = true910標題 = {11'Accept' => 'application/json',12'Content-Type' => 'application/json'13}1415資料 = {16'value' => '62747474657374'17}1819請求 = 淨::HTTP::POST.new(網址)20請求。正文 = data.to_json21headers.each { |key, value| request[key] = value }2223回應 = http.請求(請求)2425if response.code.to_i == 20026result = JSON.parse(response.body)27puts result28else29puts "Request failed with status code: #{response.code}"30結束31