/walletsolidity/getpaginatedassetissuelist REST API Endpoint
身体パラメータ
offset
整数
必須
読み込み中...
limit
整数
必須
読み込み中...
返します
資産発行
読み込み中...
所有者の住所
読み込み中...
名前
読み込み中...
略語
読み込み中...
総供給量
読み込み中...
trx_num
読み込み中...
精度
読み込み中...
num
読み込み中...
開始時刻
読み込み中...
終了時刻
読み込み中...
説明
読み込み中...
url
読み込み中...
free_asset_net_limit
読み込み中...
public_free_asset_net_limit
読み込み中...
public_free_asset_net_usage
読み込み中...
public_latest_free_net_time
読み込み中...
id
読み込み中...
リクエスト
1curl https://docs-demo.tron-mainnet.quiknode.pro/walletsolidity/getpaginatedassetissuelist \2--header 'accept: application/json' \3--header 'content-type: application/json' \4--data '5{6"offset": 0,7"limit": 208}9'
1curl https://docs-demo.tron-mainnet.quiknode.pro/walletsolidity/getpaginatedassetissuelist \2--header 'accept: application/json' \3--header 'content-type: application/json' \4--data '5{6"offset": 0,7"limit": 208}9'
1const url = 'https://docs-demo.tron-mainnet.quiknode.pro/walletsolidity/getassetissuelistbyname';2const ヘッダー = {3「承諾」: 'application/json',4「Content-Type」: 'application/json'5};67const データ = {8値: '62747474657374'9};1011フェッチ(url, {12メソッド: 'POST',13ヘッダー: ヘッダー:,14本文: JSON.stringify(data)15})16.その後(レスポンス => レスポンス.json())17.その後(結果 => {18コンソール.log(結果);19})20.catch(エラー => {21コンソール.エラー(エラー);22});23
1const url = 'https://docs-demo.tron-mainnet.quiknode.pro/walletsolidity/getassetissuelistbyname';2const ヘッダー = {3「承諾」: 'application/json',4「Content-Type」: 'application/json'5};67const データ = {8値: '62747474657374'9};1011フェッチ(url, {12メソッド: 'POST',13ヘッダー: ヘッダー:,14本文: JSON.stringify(data)15})16.その後(レスポンス => レスポンス.json())17.その後(結果 => {18コンソール.log(結果);19})20.catch(エラー => {21コンソール.エラー(エラー);22});23
1import リクエスト23url = 'https://docs-demo.tron-mainnet.quiknode.pro/walletsolidity/getassetissuelistbyname'45ヘッダー = {6「accept」: 'application/json',7「content-type」: 'application/json'8}910データ = {11「value」: '62747474657374'12}1314回答 = リクエスト.POST(url, json=data, ヘッダー=ヘッダー)1516もし レスポンス.ステータスコード == 200:17印刷(レスポンス.json())18else:19印刷('ステータスコード: でリクエストが失敗しました', レスポンス.ステータスコード)20
1import リクエスト23url = 'https://docs-demo.tron-mainnet.quiknode.pro/walletsolidity/getassetissuelistbyname'45ヘッダー = {6「accept」: 'application/json',7「content-type」: 'application/json'8}910データ = {11「value」: '62747474657374'12}1314回答 = リクエスト.POST(url, json=data, ヘッダー=ヘッダー)1516もし レスポンス.ステータスコード == 200:17印刷(レスポンス.json())18else:19印刷('ステータスコード: でリクエストが失敗しました', レスポンス.ステータスコード)20
1require 'net/http'2require 'json'3require 'uri'45url = URI('https://docs-demo.tron-mainnet.quiknode.pro/walletsolidity/getassetissuelistbyname')67http = ネット::HTTP.new(url.ホスト, url.ポート)8http.use_ssl = true910ヘッダー = {11「承諾」 => 'application/json',12「Content-Type」 => 'application/json'13}1415データ = {16'value' => '62747474657374'17}1819リクエスト = ネット::HTTP::POST.new(URL)20リクエスト.本文 = data.to_json21ヘッダー.各 { |key, 値| リクエスト[キー] = 値 }2223回答 = http.リクエスト(リクエスト)2425もし レスポンス.コード.to_i == 20026結果 = JSON.parse(response.body)27結果を格納する28else29puts "Request failed with status code: #{response.code}"30終わり31
1require 'net/http'2require 'json'3require 'uri'45url = URI('https://docs-demo.tron-mainnet.quiknode.pro/walletsolidity/getassetissuelistbyname')67http = ネット::HTTP.new(url.ホスト, url.ポート)8http.use_ssl = true910ヘッダー = {11「承諾」 => 'application/json',12「Content-Type」 => 'application/json'13}1415データ = {16'value' => '62747474657374'17}1819リクエスト = ネット::HTTP::POST.new(URL)20リクエスト.本文 = data.to_json21ヘッダー.各 { |key, 値| リクエスト[キー] = 値 }2223回答 = http.リクエスト(リクエスト)2425もし レスポンス.コード.to_i == 20026結果 = JSON.parse(response.body)27結果を格納する28else29puts "Request failed with status code: #{response.code}"30終わり31