blob.GetProof RPC Method
Parameters
height
integer
REQUIRED
Loading...
namespace
string
REQUIRED
Loading...
commitment
string
REQUIRED
Loading...
Returns
result
array
Loading...
start
integer
Loading...
end
integer
Loading...
nodes
string
Loading...
is_max_namespace_ignored
boolean
Loading...
Request
1curl --location 'https://docs-demo.celestia-mainnet.quiknode.pro/' \2--header 'Content-Type: application/json' \3--data '{4"id": 1,5"jsonrpc": "2.0",6"method": "blob.GetProof",7"params": [82683915,9"AAAAAAAAAAAAAAAAAAAAAAAAAKKnitomrCy/HoY=",10"LFKOxreekvepdicTIdalNyXer6F8Wro1zvWqSzLqS3Q="11]12}'
1curl --location 'https://docs-demo.celestia-mainnet.quiknode.pro/' \2--header 'Content-Type: application/json' \3--data '{4"id": 1,5"jsonrpc": "2.0",6"method": "blob.GetProof",7"params": [82683915,9"AAAAAAAAAAAAAAAAAAAAAAAAAKKnitomrCy/HoY=",10"LFKOxreekvepdicTIdalNyXer6F8Wro1zvWqSzLqS3Q="11]12}'
1const myHeaders = new Headers();2myHeaders.append("Content-Type", "application/json");34const raw = JSON.stringify({5"id": 1,6"jsonrpc": "2.0",7"method": "blob.GetProof",8"params": [92683915,10"AAAAAAAAAAAAAAAAAAAAAAAAAKKnitomrCy/HoY=",11"LFKOxreekvepdicTIdalNyXer6F8Wro1zvWqSzLqS3Q="12]13});1415const requestOptions = {16method: "POST",17headers: myHeaders,18body: raw,19redirect: "follow"20};2122fetch("https://docs-demo.celestia-mainnet.quiknode.pro/", requestOptions)23.then((response) => response.text())24.then((result) => console.log(result))25.catch((error) => console.error(error));
1const myHeaders = new Headers();2myHeaders.append("Content-Type", "application/json");34const raw = JSON.stringify({5"id": 1,6"jsonrpc": "2.0",7"method": "blob.GetProof",8"params": [92683915,10"AAAAAAAAAAAAAAAAAAAAAAAAAKKnitomrCy/HoY=",11"LFKOxreekvepdicTIdalNyXer6F8Wro1zvWqSzLqS3Q="12]13});1415const requestOptions = {16method: "POST",17headers: myHeaders,18body: raw,19redirect: "follow"20};2122fetch("https://docs-demo.celestia-mainnet.quiknode.pro/", requestOptions)23.then((response) => response.text())24.then((result) => console.log(result))25.catch((error) => console.error(error));
1import requests2import json34url = "https://docs-demo.celestia-mainnet.quiknode.pro/"56payload = json.dumps({7"id": 1,8"jsonrpc": "2.0",9"method": "blob.GetProof",10"params": [112683915,12"AAAAAAAAAAAAAAAAAAAAAAAAAKKnitomrCy/HoY=",13"LFKOxreekvepdicTIdalNyXer6F8Wro1zvWqSzLqS3Q="14]15})16headers = {17'Content-Type': 'application/json'18}1920response = requests.request("POST", url, headers=headers, data=payload)2122print(response.text)23
1import requests2import json34url = "https://docs-demo.celestia-mainnet.quiknode.pro/"56payload = json.dumps({7"id": 1,8"jsonrpc": "2.0",9"method": "blob.GetProof",10"params": [112683915,12"AAAAAAAAAAAAAAAAAAAAAAAAAKKnitomrCy/HoY=",13"LFKOxreekvepdicTIdalNyXer6F8Wro1zvWqSzLqS3Q="14]15})16headers = {17'Content-Type': 'application/json'18}1920response = requests.request("POST", url, headers=headers, data=payload)2122print(response.text)23
1require "uri"2require "json"3require "net/http"45url = URI("https://docs-demo.celestia-mainnet.quiknode.pro/")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"id": 1,14"jsonrpc": "2.0",15"method": "blob.GetProof",16"params": [172683915,18"AAAAAAAAAAAAAAAAAAAAAAAAAKKnitomrCy/HoY=",19"LFKOxreekvepdicTIdalNyXer6F8Wro1zvWqSzLqS3Q="20]21})2223response = https.request(request)24puts response.read_body25
1require "uri"2require "json"3require "net/http"45url = URI("https://docs-demo.celestia-mainnet.quiknode.pro/")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"id": 1,14"jsonrpc": "2.0",15"method": "blob.GetProof",16"params": [172683915,18"AAAAAAAAAAAAAAAAAAAAAAAAAKKnitomrCy/HoY=",19"LFKOxreekvepdicTIdalNyXer6F8Wro1zvWqSzLqS3Q="20]21})2223response = https.request(request)24puts response.read_body25
Don't have an account yet?
Create your Quicknode endpoint in seconds and start building
Get started for free