/wallet/listexchanges REST API Endpoint
身體參數
visible
布林值
載入中...
退貨
exchanges
載入中...
exchange_id
載入中...
creator_address
載入中...
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--request GET \3--header 'accept: application/json'
1curl https://docs-demo.tron-mainnet.quiknode.pro/wallet/listexchanges \2--request GET \3--header 'accept: application/json'
1const url = 'https://docs-demo.tron-mainnet.quiknode.pro/wallet/listexchanges';23取得(url, {4method: 'GET',5headers: {6'accept': 'application/json'7}8})9.接著(回應 => response.json())10.then(data => console.log(data))11.catch(error => console.error(error));12
1const url = 'https://docs-demo.tron-mainnet.quiknode.pro/wallet/listexchanges';23取得(url, {4method: 'GET',5headers: {6'accept': 'application/json'7}8})9.接著(回應 => response.json())10.then(data => console.log(data))11.catch(error => console.error(error));12
1匯入 請求23url = "https://docs-demo.tron-mainnet.quiknode.pro/wallet/listexchanges"45標題 = {6'accept': 'application/json'7}89response = requests.get(url, headers=headers)10print(response.json())11
1匯入 請求23url = "https://docs-demo.tron-mainnet.quiknode.pro/wallet/listexchanges"45標題 = {6'accept': 'application/json'7}89response = requests.get(url, headers=headers)10print(response.json())11
1需要 "uri"2需要 "net/http"3require 'json'45url = URI("https://docs-demo.tron-mainnet.quiknode.pro/wallet/listexchanges")67標題 = {8'accept' => 'application/json'9}1011http = Net::HTTP.new(url.host, url.port)12http.use_ssl = true1314request = Net::HTTP::Get.new(url.path, headers)1516回應 = http.請求(請求)17將回應。正文18
1需要 "uri"2需要 "net/http"3require 'json'45url = URI("https://docs-demo.tron-mainnet.quiknode.pro/wallet/listexchanges")67標題 = {8'accept' => 'application/json'9}1011http = Net::HTTP.new(url.host, url.port)12http.use_ssl = true1314request = Net::HTTP::Get.new(url.path, headers)1516回應 = http.請求(請求)17將回應。正文18