/walletsolidity/getaccount REST API Endpoint
신체 매개변수
주소
정수
필수
로딩 중...
visible
부울
로딩 중...
반품
주소
로딩 중...
균형
로딩 중...
create_time
로딩 중...
net_window_size
로딩 중...
account_resource
로딩 중...
energy_window_size
로딩 중...
owner_permission
로딩 중...
permission_name
로딩 중...
threshold
로딩 중...
keys
로딩 중...
주소
로딩 중...
weight
로딩 중...
active_permission
로딩 중...
유형
로딩 중...
id
로딩 중...
permission_name
로딩 중...
threshold
로딩 중...
operations
로딩 중...
keys
로딩 중...
주소
로딩 중...
weight
로딩 중...
frozenV2
로딩 중...
유형
로딩 중...
asset_optimized
로딩 중...
요청
1curl https://docs-demo.tron-mainnet.quiknode.pro/walletsolidity/getaccount \2--header 'accept: application/json' \3--header 'content-type: application/json' \4--data '5{6"address": "TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g",7"visible": true8}9'
1curl https://docs-demo.tron-mainnet.quiknode.pro/walletsolidity/getaccount \2--header 'accept: application/json' \3--header 'content-type: application/json' \4--data '5{6"address": "TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g",7"visible": true8}9'
1const url = 'https://docs-demo.tron-mainnet.quiknode.pro/walletsolidity/getaccount';23const data = {4address: 'TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g',5visible: true6};78가져오기(url, {9메서드: 'POST',10headers: {11'accept': 'application/json',12'content-type': 'application/json'13},14body: 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/walletsolidity/getaccount';23const data = {4address: 'TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g',5visible: true6};78가져오기(url, {9메서드: 'POST',10headers: {11'accept': 'application/json',12'content-type': 'application/json'13},14body: JSON.stringify(data)15})16.그런 다음(응답 => 응답.json())17.then(data => console.log(data))18.catch(error => console.error(error));19
1import 요청2import json34url = 'https://docs-demo.tron-mainnet.quiknode.pro/walletsolidity/getaccount'5헤더 = {6'Accept': 'application/json',7'Content-Type': 'application/json'8}9데이터 = {10'address': 'TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g',11'visible': True12}1314답변 = 요청.post(url, 헤더=헤더, data=json.dumps(data))15if response.status_code == 200:16result = response.json()17# Handle the response data18print(result)19else:20# Handle any errors21print('Request failed with status code', response.status_code)22print(response.text)23
1import 요청2import json34url = 'https://docs-demo.tron-mainnet.quiknode.pro/walletsolidity/getaccount'5헤더 = {6'Accept': 'application/json',7'Content-Type': 'application/json'8}9데이터 = {10'address': 'TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g',11'visible': True12}1314답변 = 요청.post(url, 헤더=헤더, data=json.dumps(data))15if response.status_code == 200:16result = response.json()17# Handle the response data18print(result)19else:20# Handle any errors21print('Request failed with status code', response.status_code)22print(response.text)23
1require "uri"2require "net/http"3require 'json'45url = URI("https://docs-demo.tron-mainnet.quiknode.pro/walletsolidity/getaccount")67데이터 = {8'address': 'TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g',9'visible': true10}1112헤더 = {13'accept' => 'application/json',14'content-type' => 'application/json'15}1617http = Net::HTTP.new(url.host, url.port)18http.use_ssl = true1920request = Net::HTTP::Post.new(url.path, headers)21요청.본문 = data.to_json2223답변 = http.요청(요청)24응답을 넣습니다.본문2526
1require "uri"2require "net/http"3require 'json'45url = URI("https://docs-demo.tron-mainnet.quiknode.pro/walletsolidity/getaccount")67데이터 = {8'address': 'TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g',9'visible': true10}1112헤더 = {13'accept' => 'application/json',14'content-type' => 'application/json'15}1617http = Net::HTTP.new(url.host, url.port)18http.use_ssl = true1920request = Net::HTTP::Post.new(url.path, headers)21요청.본문 = data.to_json2223답변 = http.요청(요청)24응답을 넣습니다.본문2526