/api/v2/detectAddress RPC Method
쿼리 매개변수
주소
문자열
필수
로딩 중...
반품
ok
부울
로딩 중...
결과
객체
로딩 중...
@type
문자열
로딩 중...
raw_form
문자열
로딩 중...
bounceable
객체
로딩 중...
@type
문자열
로딩 중...
b64
문자열
로딩 중...
b64url
문자열
로딩 중...
non_bounceable
객체
로딩 중...
@type
문자열
로딩 중...
b64
문자열
로딩 중...
b64url
문자열
로딩 중...
given_type
문자열
로딩 중...
test_only
부울
로딩 중...
@extra
문자열
로딩 중...
요청
1curl --location 'https://docs-demo.ton-mainnet.quiknode.pro/api/v2/detectAddress?address=EQDJlZqZfh1OQ4PY2ze4bSEBznjc8fGzkE2YiP5XLvDv1M6u' \2--header 'accept: application/json'
1curl --location 'https://docs-demo.ton-mainnet.quiknode.pro/api/v2/detectAddress?address=EQDJlZqZfh1OQ4PY2ze4bSEBznjc8fGzkE2YiP5XLvDv1M6u' \2--header 'accept: application/json'
1const myHeaders = new Headers();2myHeaders.추가("accept", "application/json");34const requestOptions = {5메서드: "GET",6헤더: myHeaders,7리디렉션: "follow"8};910fetch("https://docs-demo.ton-mainnet.quiknode.pro/api/v2/detectAddress?address=EQDJlZqZfh1OQ4PY2ze4bSEBznjc8fGzkE2YiP5XLvDv1M6u", requestOptions)11.그런 다음((응답) => 응답.text())12.그런 다음((결과) => console.log(result))13.catchcatch ((오류) => 콘솔.오류(오류));
1const myHeaders = new Headers();2myHeaders.추가("accept", "application/json");34const requestOptions = {5메서드: "GET",6헤더: myHeaders,7리디렉션: "follow"8};910fetch("https://docs-demo.ton-mainnet.quiknode.pro/api/v2/detectAddress?address=EQDJlZqZfh1OQ4PY2ze4bSEBznjc8fGzkE2YiP5XLvDv1M6u", requestOptions)11.그런 다음((응답) => 응답.text())12.그런 다음((결과) => console.log(result))13.catchcatch ((오류) => 콘솔.오류(오류));
1import 요청23url = "https://docs-demo.ton-mainnet.quiknode.pro/api/v2/detectAddress?address=EQDJlZqZfh1OQ4PY2ze4bSEBznjc8fGzkE2YiP5XLvDv1M6u"45페이로드 = {}6헤더 = {7'accept': 'application/json'8}910답변 = 요청.요청("GET", url, 헤더=헤더, data=페이로드)1112인쇄(응답.text)13
1import 요청23url = "https://docs-demo.ton-mainnet.quiknode.pro/api/v2/detectAddress?address=EQDJlZqZfh1OQ4PY2ze4bSEBznjc8fGzkE2YiP5XLvDv1M6u"45페이로드 = {}6헤더 = {7'accept': 'application/json'8}910답변 = 요청.요청("GET", url, 헤더=헤더, data=페이로드)1112인쇄(응답.text)13
1require "uri"2require "net/http"34url = URI("https://docs-demo.ton-mainnet.quiknode.pro/api/v2/detectAddress?address=EQDJlZqZfh1OQ4PY2ze4bSEBznjc8fGzkE2YiP5XLvDv1M6u")56http = Net::HTTP.new(url.host, url.port)7http.use_ssl = true8요청 = 순::HTTP::Get.new(url)9요청["수락"] = "application/json"1011답변 = http.요청(요청)12응답을 넣습니다.read_body13
1require "uri"2require "net/http"34url = URI("https://docs-demo.ton-mainnet.quiknode.pro/api/v2/detectAddress?address=EQDJlZqZfh1OQ4PY2ze4bSEBznjc8fGzkE2YiP5XLvDv1M6u")56http = Net::HTTP.new(url.host, url.port)7http.use_ssl = true8요청 = 순::HTTP::Get.new(url)9요청["수락"] = "application/json"1011답변 = http.요청(요청)12응답을 넣습니다.read_body13