バリデータ REST API エンドポイント
クエリパラメータ
高さ
整数
必須
読み込み中...
ページ
整数
必須
読み込み中...
1ページあたりの件数
整数
必須
読み込み中...
返品
結果
オブジェクト
読み込み中...
block_height
読み込み中...
バリデータ
配列
読み込み中...
住所
読み込み中...
公開鍵
オブジェクト
読み込み中...
タイプ
読み込み中...
値
読み込み中...
議決権
読み込み中...
提案者の優先度
読み込み中...
カウント
読み込み中...
合計
読み込み中...
リクエスト
1curl --location 'https://docs-demo.cosmos-mainnet.quiknode.pro/validators?height=26627210&page=2&per_page=30'
1curl --location 'https://docs-demo.cosmos-mainnet.quiknode.pro/validators?height=26627210&page=2&per_page=30'
1curl --location 'https://docs-demo.cosmos-mainnet.quiknode.pro/' \2--ヘッダー 'Content-Type: application/json' \3--data '{4"jsonrpc": "2.0",5"method": "validators",6"params": [776122999,81,93010],11"id": 112}'
1curl --location 'https://docs-demo.cosmos-mainnet.quiknode.pro/' \2--ヘッダー 'Content-Type: application/json' \3--data '{4"jsonrpc": "2.0",5"method": "validators",6"params": [776122999,81,93010],11"id": 112}'
1const requestOptions = {2メソッド: "GET",3リダイレクト: "follow"4};56fetch(「https://docs-demo.cosmos-mainnet.quiknode.pro/validators?height=26627210&page=2&per_page=30」, requestOptions)7.その後((レスポンス) => レスポンス.text())8.その後((結果) => コンソール.log(result))9.catchcatch((エラー) => コンソール.エラー(エラー));
1const requestOptions = {2メソッド: "GET",3リダイレクト: "follow"4};56fetch(「https://docs-demo.cosmos-mainnet.quiknode.pro/validators?height=26627210&page=2&per_page=30」, requestOptions)7.その後((レスポンス) => レスポンス.text())8.その後((結果) => コンソール.log(result))9.catchcatch((エラー) => コンソール.エラー(エラー));
1import リクエスト23url = "https://docs-demo.cosmos-mainnet.quiknode.pro/validators?height=26627210&page=2&per_page=30"45ペイロード = {}6ヘッダー = {}78回答 = リクエスト.リクエスト("GET", url, headers=headers, データ=ペイロード)910印刷(レスポンス.text)11
1import リクエスト23url = "https://docs-demo.cosmos-mainnet.quiknode.pro/validators?height=26627210&page=2&per_page=30"45ペイロード = {}6ヘッダー = {}78回答 = リクエスト.リクエスト("GET", url, headers=headers, データ=ペイロード)910印刷(レスポンス.text)11
1require "uri"2require "net/http"34url = URI("https://docs-demo.cosmos-mainnet.quiknode.pro/validators?height=26627210&page=2&per_page=30")56https = ネット::HTTP.new(url.ホスト, url.ポート)7https.use_ssl = true89リクエスト = ネット::HTTP::Get.new(url)1011回答 = https.リクエスト(リクエスト)12レスポンスを格納する.read_body13
1require "uri"2require "net/http"34url = URI("https://docs-demo.cosmos-mainnet.quiknode.pro/validators?height=26627210&page=2&per_page=30")56https = ネット::HTTP.new(url.ホスト, url.ポート)7https.use_ssl = true89リクエスト = ネット::HTTP::Get.new(url)1011回答 = https.リクエスト(リクエスト)12レスポンスを格納する.read_body13