/v1/transactions/by_hash/{txn_hash} REST API Endpoint
パスパラメータ
txn_hash
文字列
必須
読み込み中...
返品
タイプ
読み込み中...
ハッシュ
読み込み中...
送信者
読み込み中...
sequence_number
読み込み中...
max_gas_amount
読み込み中...
gas_unit_price
読み込み中...
expiration_timestamp_secs
読み込み中...
payload
読み込み中...
タイプ
読み込み中...
関数
読み込み中...
type_arguments
読み込み中...
arguments
読み込み中...
署名
読み込み中...
タイプ
読み込み中...
公開鍵
読み込み中...
署名
読み込み中...
リクエスト
1curl -X 'GET' https://docs-demo.aptos-mainnet.quiknode.pro/v1/transactions/by_hash/0xbe9e71660e128e0e3e1f082c394f7b1bd2f4cb9c52207fe63cf4c8e7eb080e9d/ \2-H 'Content-Type: application/json'
1curl -X 'GET' https://docs-demo.aptos-mainnet.quiknode.pro/v1/transactions/by_hash/0xbe9e71660e128e0e3e1f082c394f7b1bd2f4cb9c52207fe63cf4c8e7eb080e9d/ \2-H 'Content-Type: application/json'
1var myHeaders = new Headers();2myHeaders.append("Content-Type", "application/json");34var requestOptions = {5メソッド: 'GET',6ヘッダー: myHeaders,7リダイレクト: 'follow'8};910fetch("https://docs-demo.aptos-mainnet.quiknode.pro/v1/transactions/by_hash/0xbe9e71660e128e0e3e1f082c394f7b1bd2f4cb9c52207fe63cf4c8e7eb080e9d/", requestOptions)11.その後(レスポンス => レスポンス.text())12.その後(結果 => コンソール.log(result))13.catchcatch(エラー => console.log('error', error));
1var myHeaders = new Headers();2myHeaders.append("Content-Type", "application/json");34var requestOptions = {5メソッド: 'GET',6ヘッダー: myHeaders,7リダイレクト: 'follow'8};910fetch("https://docs-demo.aptos-mainnet.quiknode.pro/v1/transactions/by_hash/0xbe9e71660e128e0e3e1f082c394f7b1bd2f4cb9c52207fe63cf4c8e7eb080e9d/", requestOptions)11.その後(レスポンス => レスポンス.text())12.その後(結果 => コンソール.log(result))13.catchcatch(エラー => console.log('error', error));
1import リクエスト2import json34url = "https://docs-demo.aptos-mainnet.quiknode.pro/v1/transactions/by_hash/0xbe9e71660e128e0e3e1f082c394f7b1bd2f4cb9c52207fe63cf4c8e7eb080e9d/"56ペイロード = {}7ヘッダー = {8「Content-Type」: 'application/json'9}1011回答 = リクエスト.リクエスト("GET", url, headers=headers, データ=ペイロード)1213印刷(レスポンス.text)14
1import リクエスト2import json34url = "https://docs-demo.aptos-mainnet.quiknode.pro/v1/transactions/by_hash/0xbe9e71660e128e0e3e1f082c394f7b1bd2f4cb9c52207fe63cf4c8e7eb080e9d/"56ペイロード = {}7ヘッダー = {8「Content-Type」: 'application/json'9}1011回答 = リクエスト.リクエスト("GET", url, headers=headers, データ=ペイロード)1213印刷(レスポンス.text)14
1require "uri"2require "json"3require "net/http"45url = URI("https://docs-demo.aptos-mainnet.quiknode.pro/v1/transactions/by_hash/0xbe9e71660e128e0e3e1f082c394f7b1bd2f4cb9c52207fe63cf4c8e7eb080e9d/")67https = ネット::HTTP.new(url.ホスト, url.ポート)8https.use_ssl = true910リクエスト = ネット::HTTP::Get.new(url)11リクエスト["Content-Type"] = "application/json"1213回答 = https.リクエスト(リクエスト)14レスポンスを格納する.read_body15
1require "uri"2require "json"3require "net/http"45url = URI("https://docs-demo.aptos-mainnet.quiknode.pro/v1/transactions/by_hash/0xbe9e71660e128e0e3e1f082c394f7b1bd2f4cb9c52207fe63cf4c8e7eb080e9d/")67https = ネット::HTTP.new(url.ホスト, url.ポート)8https.use_ssl = true910リクエスト = ネット::HTTP::Get.new(url)11リクエスト["Content-Type"] = "application/json"1213回答 = https.リクエスト(リクエスト)14レスポンスを格納する.read_body15