/wallet/getaccountnet REST API Endpoint
신체 측정값
주소
정수
필수
로딩 중...
보이는
부울
로딩 중...
반품
freeNetUsed
로딩 중...
freeNetLimit
로딩 중...
netUsed
로딩 중...
netLimit
로딩 중...
totalNetLimit
로딩 중...
totalNetWeight
로딩 중...
assetNetUsed
로딩 중...
assetNetLimit
로딩 중...
요청
1curl https://docs-demo.tron-mainnet.quiknode.pro/wallet/getaccountnet \2--header 'accept: application/json' \3--헤더 'content-type: application/json' \4--데이터 '5{6"address": "TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g",7"visible": true8}9'
1curl https://docs-demo.tron-mainnet.quiknode.pro/wallet/getaccountnet \2--header 'accept: application/json' \3--헤더 'content-type: application/json' \4--데이터 '5{6"address": "TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g",7"visible": true8}9'
1const url = 'https://docs-demo.tron-mainnet.quiknode.pro/wallet/getaccountnet';23const data = {4address: 'TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g',5표시됨: true6};78가져오기fetch (url, {9메서드: 'POST',10headers: {11'accept': 'application/json',12'content-type': 'application/json'13},14본문: JSON.stringify(data)15})16.그런 다음(응답 => 응답.json())17.then(data => console.log(data))18.catch(error => console.error(error));19
1const url = 'https://docs-demo.tron-mainnet.quiknode.pro/wallet/getaccountnet';23const data = {4address: 'TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g',5표시됨: true6};78가져오기fetch (url, {9메서드: 'POST',10headers: {11'accept': 'application/json',12'content-type': 'application/json'13},14본문: JSON.stringify(data)15})16.그런 다음(응답 => 응답.json())17.then(data => console.log(data))18.catch(error => console.error(error));19
1import 요청23url = "https://docs-demo.tron-mainnet.quiknode.pro/wallet/getaccountnet"45데이터 = {6'address': 'TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g',7'visible': True8}910헤더 = {11'accept': 'application/json',12'content-type': 'application/json'13}1415답변 = 요청.post(url, json=data, 헤더=헤더)16print(response.json())17json())18
1import 요청23url = "https://docs-demo.tron-mainnet.quiknode.pro/wallet/getaccountnet"45데이터 = {6'address': 'TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g',7'visible': True8}910헤더 = {11'accept': 'application/json',12'content-type': 'application/json'13}1415답변 = 요청.post(url, json=data, 헤더=헤더)16print(response.json())17json())18
1require "uri"2require "net/http"3require 'json'45url = URI("https://docs-demo.tron-mainnet.quiknode.pro/wallet/getaccountnet")67데이터 = {8'address': 'TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g',9'visible': true10}1112헤더 = {13'accept' => 'application/json',14'content-type' => 'application/json'15}1617http = Net::HTTP.new(url.호스트, url.포트)18http.use_ssl = true1920요청 = 순::HTTP::POST.새(URL.path, 헤더)21요청.본문 = data.to_json2223답변 = http.요청(요청)24응답을 반환합니다.본문2526
1require "uri"2require "net/http"3require 'json'45url = URI("https://docs-demo.tron-mainnet.quiknode.pro/wallet/getaccountnet")67데이터 = {8'address': 'TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g',9'visible': true10}1112헤더 = {13'accept' => 'application/json',14'content-type' => 'application/json'15}1617http = Net::HTTP.new(url.호스트, url.포트)18http.use_ssl = true1920요청 = 순::HTTP::POST.새(URL.path, 헤더)21요청.본문 = data.to_json2223답변 = http.요청(요청)24응답을 반환합니다.본문2526