/accounts/{address}/validate REST API Endpoint
パスパラメータ
住所
文字列
必須
読み込み中...
返品
isValid
ブール値
読み込み中...
ss58Prefix
文字列
読み込み中...
ネットワーク
文字列
読み込み中...
accountId
文字列
読み込み中...
リクエスト
1curl 'https://docs-demo.dot-mainnet.quiknode.pro/accounts/5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty/validate' \2--header 'Accept: application/json'
1curl 'https://docs-demo.dot-mainnet.quiknode.pro/accounts/5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty/validate' \2--header 'Accept: application/json'
1const myHeaders = new Headers();2myHeaders.append("Accept", "application/json");34const requestOptions = {5メソッド: "GET",6ヘッダー: myHeaders,7リダイレクト: "follow"8};910fetch("https://docs-demo.dot-mainnet.quiknode.pro/accounts/5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty/validate", requestOptions)11.その後((レスポンス) => レスポンス.text())12.その後((結果) => コンソール.log(result))13.catchcatch((エラー) => コンソール.エラー(エラー));
1const myHeaders = new Headers();2myHeaders.append("Accept", "application/json");34const requestOptions = {5メソッド: "GET",6ヘッダー: myHeaders,7リダイレクト: "follow"8};910fetch("https://docs-demo.dot-mainnet.quiknode.pro/accounts/5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty/validate", requestOptions)11.その後((レスポンス) => レスポンス.text())12.その後((結果) => コンソール.log(result))13.catchcatch((エラー) => コンソール.エラー(エラー));
1import リクエスト23url = "https://docs-demo.dot-mainnet.quiknode.pro/accounts/5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty/validate"45ペイロード = {}6ヘッダー = {7'Accept': 'application/json'8}910回答 = リクエスト.リクエスト("GET", url, headers=headers, データ=ペイロード)1112印刷(レスポンス.text)13
1import リクエスト23url = "https://docs-demo.dot-mainnet.quiknode.pro/accounts/5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty/validate"45ペイロード = {}6ヘッダー = {7'Accept': 'application/json'8}910回答 = リクエスト.リクエスト("GET", url, headers=headers, データ=ペイロード)1112印刷(レスポンス.text)13
1require "uri"2require "net/http"34url = URI("https://docs-demo.dot-mainnet.quiknode.pro/accounts/5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty/validate")56https = ネット::HTTP.new(url.ホスト, url.ポート)7https.use_ssl = true89リクエスト = ネット::HTTP::Get.new(url)10リクエスト[「承諾」] = "application/json"1112回答 = https.リクエスト(リクエスト)13レスポンスを格納する.read_body14
1require "uri"2require "net/http"34url = URI("https://docs-demo.dot-mainnet.quiknode.pro/accounts/5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty/validate")56https = ネット::HTTP.new(url.ホスト, url.ポート)7https.use_ssl = true89リクエスト = ネット::HTTP::Get.new(url)10リクエスト[「承諾」] = "application/json"1112回答 = https.リクエスト(リクエスト)13レスポンスを格納する.read_body14