/walletsolidity/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/walletsolidity/listexchanges \2--request GET \3--header 'accept: application/json'
1curl https://docs-demo.tron-mainnet.quiknode.pro/walletsolidity/listexchanges \2--request GET \3--header 'accept: application/json'
1const url = 'https://docs-demo.tron-mainnet.quiknode.pro/walletsolidity/listexchanges';23가져오기(url, {4method: 'GET',5headers: {6'accept': 'application/json'7}8})9.그런 다음(응답 => 응답.json())10.then(data => console.log(data))11.catch(error => console.error(error));12
1const url = 'https://docs-demo.tron-mainnet.quiknode.pro/walletsolidity/listexchanges';23가져오기(url, {4method: 'GET',5headers: {6'accept': 'application/json'7}8})9.그런 다음(응답 => 응답.json())10.then(data => console.log(data))11.catch(error => console.error(error));12
1import 요청23url = "https://docs-demo.tron-mainnet.quiknode.pro/walletsolidity/listexchanges"45헤더 = {6'accept': 'application/json'7}89response = requests.get(url, headers=headers)10print(response.json())11
1import 요청23url = "https://docs-demo.tron-mainnet.quiknode.pro/walletsolidity/listexchanges"45헤더 = {6'accept': 'application/json'7}89response = requests.get(url, headers=headers)10print(response.json())11
1require "uri"2require "net/http"3require 'json'45url = URI("https://docs-demo.tron-mainnet.quiknode.pro/walletsolidity/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
1require "uri"2require "net/http"3require 'json'45url = URI("https://docs-demo.tron-mainnet.quiknode.pro/walletsolidity/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