/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.추가("Content-Type", "application/json");34var requestOptions = {5method: 'GET',6헤더: myHeaders,7리디렉션: 'follow'8};910fetch("https://docs-demo.aptos-mainnet.quiknode.pro/v1/transactions/by_hash/0xbe9e71660e128e0e3e1f082c394f7b1bd2f4cb9c52207fe63cf4c8e7eb080e9d/", requestOptions)11.그런 다음(응답 => response.text())12.그런 다음(결과 => console.log(result))13.catch(오류 => console.log('error', error));
1var myHeaders = new Headers();2myHeaders.추가("Content-Type", "application/json");34var requestOptions = {5method: 'GET',6헤더: myHeaders,7리디렉션: 'follow'8};910fetch("https://docs-demo.aptos-mainnet.quiknode.pro/v1/transactions/by_hash/0xbe9e71660e128e0e3e1f082c394f7b1bd2f4cb9c52207fe63cf4c8e7eb080e9d/", requestOptions)11.그런 다음(응답 => response.text())12.그런 다음(결과 => console.log(result))13.catch(오류 => 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, 헤더=헤더, data=페이로드)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, 헤더=헤더, data=페이로드)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 = Net::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 = Net::HTTP.new(url.호스트, url.포트)8https.use_ssl = true910요청 = 순::HTTP::Get.new(url)11요청["Content-Type"] = "application/json"1213답변 = https.요청(요청)14응답을 넣습니다.read_body15