perpDexs Info Endpoint Method
パラメータ
タイプ
文字列
必須
読み込み中...
返品
配列
配列
読み込み中...
default
null
読み込み中...
オブジェクト
オブジェクト
読み込み中...
名前
文字列
読み込み中...
full_name
文字列
読み込み中...
deployer
文字列
読み込み中...
oracle_updater
文字列
読み込み中...
リクエスト
1curl https://docs-demo.hype-mainnet.quiknode.pro/evm \2-X POST \3-H "Content-Type: application/json" \4--data '{"type":"perpDexs"}'5
1curl https://docs-demo.hype-mainnet.quiknode.pro/evm \2-X POST \3-H "Content-Type: application/json" \4--data '{"type":"perpDexs"}'5
1var myHeaders = new Headers();2myHeaders.append("Content-Type", "application/json");34var raw = JSON.stringify({5"type": "perpDexs"6});78var requestOptions = {9メソッド: 'POST',10ヘッダー: myHeaders,11本文: raw,12リダイレクト: 'follow'13};1415fetch(「https://docs-demo.hype-mainnet.quiknode.pro/evm」, requestOptions)16.その後(レスポンス => レスポンス.text())17.その後(結果 => コンソール.log(result))18.catchcatch(エラー => console.log('error', error));19
1var myHeaders = new Headers();2myHeaders.append("Content-Type", "application/json");34var raw = JSON.stringify({5"type": "perpDexs"6});78var requestOptions = {9メソッド: 'POST',10ヘッダー: myHeaders,11本文: raw,12リダイレクト: 'follow'13};1415fetch(「https://docs-demo.hype-mainnet.quiknode.pro/evm」, requestOptions)16.その後(レスポンス => レスポンス.text())17.その後(結果 => コンソール.log(result))18.catchcatch(エラー => console.log('error', error));19
1import リクエスト2import json34url = "https://docs-demo.hype-mainnet.quiknode.pro/evm"56ペイロード = json.dumps({7"type": "perpDexs"8})9ヘッダー = {10「Content-Type」: 'application/json'11}1213回答 = リクエスト.リクエスト("POST", url, headers=headers, データ=ペイロード)1415印刷(レスポンス.text)16
1import リクエスト2import json34url = "https://docs-demo.hype-mainnet.quiknode.pro/evm"56ペイロード = json.dumps({7"type": "perpDexs"8})9ヘッダー = {10「Content-Type」: 'application/json'11}1213回答 = リクエスト.リクエスト("POST", url, headers=headers, データ=ペイロード)1415印刷(レスポンス.text)16
1require "uri"2require "json"3require "net/http"45url = URI("https://docs-demo.hype-mainnet.quiknode.pro/evm")67https = ネット::HTTP.new(url.ホスト, url.ポート)8https.use_ssl = true910リクエスト = ネット::HTTP::POST.new(URL)11リクエスト["Content-Type"] = "application/json"12リクエスト.本文 = JSON.dump({13"type": "perpDexs"14})1516回答 = https.リクエスト(リクエスト)17レスポンスを格納する.read_body18
1require "uri"2require "json"3require "net/http"45url = URI("https://docs-demo.hype-mainnet.quiknode.pro/evm")67https = ネット::HTTP.new(url.ホスト, url.ポート)8https.use_ssl = true910リクエスト = ネット::HTTP::POST.new(URL)11リクエスト["Content-Type"] = "application/json"12リクエスト.本文 = JSON.dump({13"type": "perpDexs"14})1516回答 = https.リクエスト(リクエスト)17レスポンスを格納する.read_body18