Get Location Status
Last updated
Last updated
curl $URL/api/v1/records/$LOC/status \
-H "x-api-key: $KEY" \
-H "accept: text/plain"const response = await fetch('${url}/api/v1/records/${loc}/status', {
headers: {
'x-api-key': '${key}',
'accept': 'text/plain'
}
});{
"confirmation": null
}{
"confirmation": {
"confirmedBlocks": 6,
"blockHash": "0e551049775fd9a3fc6516....5819eb375e4664b72adf17f41d",
"blockTimestamp": "2024-01-02T13:14:17Z",
"merkleProof": {
"index": 1,
"txOrId": "7d2aef40841f0109....c31c83a5505a4c147e",
"target": "00000020ad15738f....67ffff7f2000000000",
"nodes": [
"10c7dc9d7a89c6fa05ba....1651e423edc230f2f1d823a5"
],
....
}
}
}