/wallet/listexchanges REST API Endpoint
身体パラメータ
表示されている
ブール値
読み込み中...
返品
取引所
読み込み中...
exchange_id
読み込み中...
作成者アドレス
読み込み中...
create_time
読み込み中...
first_token_id
読み込み中...
first_token_balance
読み込み中...
second_token_id
読み込み中...
second_token_balance
読み込み中...
リクエスト
1curl https://docs-demo.tron-mainnet.quiknode.pro/wallet/listexchanges \2--リクエスト GET \3--header 'accept: application/json'
1curl https://docs-demo.tron-mainnet.quiknode.pro/wallet/listexchanges \2--リクエスト GET \3--header 'accept: application/json'
1const url = 'https://docs-demo.tron-mainnet.quiknode.pro/wallet/listexchanges';23fetch(url, {4メソッド: 'GET',5headers: {6「accept」: 'application/json'7}8})9.その後(レスポンス => レスポンス.json())10.その後(データ => コンソール.log(data))11.catchcatch(エラー => console.error(エラー));12
1const url = 'https://docs-demo.tron-mainnet.quiknode.pro/wallet/listexchanges';23fetch(url, {4メソッド: 'GET',5headers: {6「accept」: 'application/json'7}8})9.その後(レスポンス => レスポンス.json())10.その後(データ => コンソール.log(data))11.catchcatch(エラー => console.error(エラー));12
1import リクエスト23url = "https://docs-demo.tron-mainnet.quiknode.pro/wallet/listexchanges"45ヘッダー = {6「accept」: 'application/json'7}89回答 = リクエスト.get(url, headers=headers)10印刷(レスポンス.json())11
1import リクエスト23url = "https://docs-demo.tron-mainnet.quiknode.pro/wallet/listexchanges"45ヘッダー = {6「accept」: 'application/json'7}89回答 = リクエスト.get(url, headers=headers)10印刷(レスポンス.json())11
1require "uri"2require "net/http"3require 'json'45url = URI("https://docs-demo.tron-mainnet.quiknode.pro/wallet/listexchanges")67ヘッダー = {8「accept」 => 'application/json'9}1011http = ネット::HTTP.new(url.ホスト, url.ポート)12http.use_ssl = true1314リクエスト = ネット::HTTP::Get.new(url.path, ヘッダー)1516回答 = http.リクエスト(リクエスト)17レスポンスを格納する。body18
1require "uri"2require "net/http"3require 'json'45url = URI("https://docs-demo.tron-mainnet.quiknode.pro/wallet/listexchanges")67ヘッダー = {8「accept」 => 'application/json'9}1011http = ネット::HTTP.new(url.ホスト, url.ポート)12http.use_ssl = true1314リクエスト = ネット::HTTP::Get.new(url.path, ヘッダー)1516回答 = http.リクエスト(リクエスト)17レスポンスを格納する。body18