/wallet/unfreezebalance REST API Endpoint
Body Parameters
owner_address
string
REQUIRED
Loading...
resource
string
REQUIRED
Loading...
receiver_address
string
Loading...
permission_id
integer
Loading...
visible
boolean
Loading...
Returns
visible
Loading...
txid
Loading...
raw_data
Loading...
contract
Loading...
parameter
Loading...
value
Loading...
resource
Loading...
owner_address
Loading...
receiver_address
Loading...
type_url
Loading...
type
Loading...
ref_block_bytes
Loading...
ref_block_hash
Loading...
expiration
Loading...
timestamp
Loading...
raw_data_hex
Loading...
Request
1curl https://docs-demo.tron-mainnet.quiknode.pro/wallet/unfreezebalance \2--header 'accept: application/json' \3--header 'content-type: application/json' \4--data '5{6"owner_address": "OWNER_ADDRESS",7"resource": "BANDWIDTH",8"visible": true9}10'11
1curl https://docs-demo.tron-mainnet.quiknode.pro/wallet/unfreezebalance \2--header 'accept: application/json' \3--header 'content-type: application/json' \4--data '5{6"owner_address": "OWNER_ADDRESS",7"resource": "BANDWIDTH",8"visible": true9}10'11
1const url = 'https://docs-demo.tron-mainnet.quiknode.pro/wallet/unfreezebalance';2const headers = {3'Accept': 'application/json',4'Content-Type': 'application/json'5};67const data = {8owner_address: 'OWNER_ADDRESS',9resource: 'BANDWIDTH',10visible: true11};1213fetch(url, {14method: 'POST',15headers: headers,16body: JSON.stringify(data)17})18.then(response => response.json())19.then(result => {20console.log(result);21})22.catch(error => {23console.error(error);24});2526
1const url = 'https://docs-demo.tron-mainnet.quiknode.pro/wallet/unfreezebalance';2const headers = {3'Accept': 'application/json',4'Content-Type': 'application/json'5};67const data = {8owner_address: 'OWNER_ADDRESS',9resource: 'BANDWIDTH',10visible: true11};1213fetch(url, {14method: 'POST',15headers: headers,16body: JSON.stringify(data)17})18.then(response => response.json())19.then(result => {20console.log(result);21})22.catch(error => {23console.error(error);24});2526
1import requests23url = 'https://docs-demo.tron-mainnet.quiknode.pro/wallet/unfreezebalance'45headers = {6'accept': 'application/json',7'content-type': 'application/json'8}910data = {11"owner_address": "OWNER_ADDRESS",12"resource": "BANDWIDTH",13"visible": True14}1516response = requests.post(url, json=data, headers=headers)1718if response.status_code == 200:19print(response.json())20else:21print("Request failed with status code:", response.status_code)22
1import requests23url = 'https://docs-demo.tron-mainnet.quiknode.pro/wallet/unfreezebalance'45headers = {6'accept': 'application/json',7'content-type': 'application/json'8}910data = {11"owner_address": "OWNER_ADDRESS",12"resource": "BANDWIDTH",13"visible": True14}1516response = requests.post(url, json=data, headers=headers)1718if response.status_code == 200:19print(response.json())20else:21print("Request failed with status code:", response.status_code)22
1require 'net/http'2require 'json'3require 'uri'45url = URI('https://docs-demo.tron-mainnet.quiknode.pro/wallet/unfreezebalance')67http = Net::HTTP.new(url.host, url.port)8http.use_ssl = true910headers = {11'Accept' => 'application/json',12'Content-Type' => 'application/json'13}1415data = {16owner_address: 'OWNER_ADDRESS',17resource: 'BANDWIDTH',18visible: true19}2021request = Net::HTTP::Post.new(url)22request.body = data.to_json23headers.each { |key, value| request[key] = value }2425response = http.request(request)2627if response.code.to_i == 20028result = JSON.parse(response.body)29puts result30else31puts "Request failed with status code: #{response.code}"32end33
1require 'net/http'2require 'json'3require 'uri'45url = URI('https://docs-demo.tron-mainnet.quiknode.pro/wallet/unfreezebalance')67http = Net::HTTP.new(url.host, url.port)8http.use_ssl = true910headers = {11'Accept' => 'application/json',12'Content-Type' => 'application/json'13}1415data = {16owner_address: 'OWNER_ADDRESS',17resource: 'BANDWIDTH',18visible: true19}2021request = Net::HTTP::Post.new(url)22request.body = data.to_json23headers.each { |key, value| request[key] = value }2425response = http.request(request)2627if response.code.to_i == 20028result = JSON.parse(response.body)29puts result30else31puts "Request failed with status code: #{response.code}"32end33
Don't have an account yet?
Create your Quicknode endpoint in seconds and start building
Get started for free