Skip to main content
GET
/
proof
/
root-hash
/
{roothash}
/
address
/
{address}
Get Merkle proof
curl --request GET \
  --url https://api.example.com/proof/root-hash/{roothash}/address/{address}
const options = {method: 'GET'};

fetch('https://api.example.com/proof/root-hash/{roothash}/address/{address}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
import requests

url = "https://api.example.com/proof/root-hash/{roothash}/address/{address}"

response = requests.get(url)

print(response.text)
false
{}

Path Parameters

roothash
string
required

Root hash (hex)

address
string
required

Bech32 address

Response

Successful response

The response is of type object.