/wallet/getexpandedspendingkey REST API Endpoint
身体パラメータ
値
文字列
必須
読み込み中...
返品
success
読み込み中...
expandedSpendingKey
読み込み中...
エラー
読み込み中...
statusCode
読み込み中...
リクエスト
1curl https://docs-demo.tron-mainnet.quiknode.pro/wallet/getexpandedspendingkey \2--header 'accept: application/json' \3--header 'content-type: application/json' \4--data '{5"value": "09124de6a534661ef1cfad0335832445a3b83c08e885881a68a52cf4dc735e68"6}7'
1curl https://docs-demo.tron-mainnet.quiknode.pro/wallet/getexpandedspendingkey \2--header 'accept: application/json' \3--header 'content-type: application/json' \4--data '{5"value": "09124de6a534661ef1cfad0335832445a3b83c08e885881a68a52cf4dc735e68"6}7'
1const url = 'https://docs-demo.tron-mainnet.quiknode.pro/wallet/getexpandedspendingkey';23const data = {4value: "09124de6a534661ef1cfad0335832445a3b83c08e885881a68a52cf4dc735e68"5};67fetch(url, {8メソッド: 'POST',9headers: {10'accept': 'application/json',11'content-type': 'application/json'12},13body: JSON.stringify(data)14})15.その後(レスポンス => レスポンス.json())16.その後(データ => コンソール.log(data))17.catchcatch(エラー => console.error(エラー));18
1const url = 'https://docs-demo.tron-mainnet.quiknode.pro/wallet/getexpandedspendingkey';23const data = {4value: "09124de6a534661ef1cfad0335832445a3b83c08e885881a68a52cf4dc735e68"5};67fetch(url, {8メソッド: 'POST',9headers: {10'accept': 'application/json',11'content-type': 'application/json'12},13body: JSON.stringify(data)14})15.その後(レスポンス => レスポンス.json())16.その後(データ => コンソール.log(data))17.catchcatch(エラー => console.error(エラー));18
1import リクエスト23url = "https://docs-demo.tron-mainnet.quiknode.pro/wallet/getexpandedspendingkey"45データ = {6'value': '09124de6a534661ef1cfad0335832445a3b83c08e885881a68a52cf4dc735e68'7}89ヘッダー = {10'accept': 'application/json',11'content-type': 'application/json'12}1314response = requests.post(url, json=data, headers=headers)15印刷(レスポンス.json())16
1import リクエスト23url = "https://docs-demo.tron-mainnet.quiknode.pro/wallet/getexpandedspendingkey"45データ = {6'value': '09124de6a534661ef1cfad0335832445a3b83c08e885881a68a52cf4dc735e68'7}89ヘッダー = {10'accept': 'application/json',11'content-type': 'application/json'12}1314response = requests.post(url, json=data, headers=headers)15印刷(レスポンス.json())16
1require "uri"2require "net/http"3require 'json'45url = URI("https://docs-demo.tron-mainnet.quiknode.pro/wallet/getexpandedspendingkey")67データ = {8value: "09124de6a534661ef1cfad0335832445a3b83c08e885881a68a52cf4dc735e68"9}1011ヘッダー = {12'accept' => 'application/json',13'content-type' => 'application/json'14}1516http = ネット::HTTP.new(url.ホスト, url.ポート)17http.use_ssl = true1819request = Net::HTTP::Post.new(url.path, headers)20リクエスト.本文 = data.to_json2122回答 = http.リクエスト(リクエスト)23レスポンスを格納する。body
1require "uri"2require "net/http"3require 'json'45url = URI("https://docs-demo.tron-mainnet.quiknode.pro/wallet/getexpandedspendingkey")67データ = {8value: "09124de6a534661ef1cfad0335832445a3b83c08e885881a68a52cf4dc735e68"9}1011ヘッダー = {12'accept' => 'application/json',13'content-type' => 'application/json'14}1516http = ネット::HTTP.new(url.ホスト, url.ポート)17http.use_ssl = true1819request = Net::HTTP::Post.new(url.path, headers)20リクエスト.本文 = data.to_json2122回答 = http.リクエスト(リクエスト)23レスポンスを格納する。body