predictedFundings Info Endpoint Method
Parameters
type
string
REQUIRED
Loading...
Returns
coinData
array
Loading...
coin
string
Loading...
exchanges
array
Loading...
exchange
string
Loading...
fundingRate
string
Loading...
nextFundingTime
integer
Loading...
fundingIntervalHours
integer
Loading...
Request
1curl https://docs-demo.hype-mainnet.quiknode.pro/evm \2-X POST \3-H "Content-Type: application/json" \4--data '{"type":"predictedFundings"}'5
1curl https://docs-demo.hype-mainnet.quiknode.pro/evm \2-X POST \3-H "Content-Type: application/json" \4--data '{"type":"predictedFundings"}'5
1var myHeaders = new Headers();2myHeaders.append("Content-Type", "application/json");34var raw = JSON.stringify({5"type": "predictedFundings"6});78var requestOptions = {9method: 'POST',10headers: myHeaders,11body: raw,12redirect: 'follow'13};1415fetch("https://docs-demo.hype-mainnet.quiknode.pro/evm", requestOptions)16.then(response => response.text())17.then(result => console.log(result))18.catch(error => console.log('error', error));19
1var myHeaders = new Headers();2myHeaders.append("Content-Type", "application/json");34var raw = JSON.stringify({5"type": "predictedFundings"6});78var requestOptions = {9method: 'POST',10headers: myHeaders,11body: raw,12redirect: 'follow'13};1415fetch("https://docs-demo.hype-mainnet.quiknode.pro/evm", requestOptions)16.then(response => response.text())17.then(result => console.log(result))18.catch(error => console.log('error', error));19
1import requests2import json34url = "https://docs-demo.hype-mainnet.quiknode.pro/evm"56payload = json.dumps({7"type": "predictedFundings"8})9headers = {10'Content-Type': 'application/json'11}1213response = requests.request("POST", url, headers=headers, data=payload)1415print(response.text)16
1import requests2import json34url = "https://docs-demo.hype-mainnet.quiknode.pro/evm"56payload = json.dumps({7"type": "predictedFundings"8})9headers = {10'Content-Type': 'application/json'11}1213response = requests.request("POST", url, headers=headers, data=payload)1415print(response.text)16
1require "uri"2require "json"3require "net/http"45url = URI("https://docs-demo.hype-mainnet.quiknode.pro/evm")67https = Net::HTTP.new(url.host, url.port)8https.use_ssl = true910request = Net::HTTP::Post.new(url)11request["Content-Type"] = "application/json"12request.body = JSON.dump({13"type": "predictedFundings"14})1516response = https.request(request)17puts response.read_body18
1require "uri"2require "json"3require "net/http"45url = URI("https://docs-demo.hype-mainnet.quiknode.pro/evm")67https = Net::HTTP.new(url.host, url.port)8https.use_ssl = true910request = Net::HTTP::Post.new(url)11request["Content-Type"] = "application/json"12request.body = JSON.dump({13"type": "predictedFundings"14})1516response = https.request(request)17puts response.read_body18
Don't have an account yet?
Create your Quicknode endpoint in seconds and start building
Get started for free