Skip to main content
POST
/
proof
/
verify
Verify Merkle proof
curl --request POST \
  --url https://api.example.com/proof/verify \
  --header 'Content-Type: application/json' \
  --data '{}'
const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({})
};

fetch('https://api.example.com/proof/verify', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
import requests

url = "https://api.example.com/proof/verify"

payload = {}
headers = {"Content-Type": "application/json"}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
false
{}

Body

application/json

VerifyProofRequest with address, rootHash, proof, etc.

The body is of type object.

Response

Successful response

The response is of type object.