Get revocation index hash
GET
/v1/federation/revocation-hash
const url = 'http://localhost:8693/v1/federation/revocation-hash';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url http://localhost:8693/v1/federation/revocation-hashReturns SHA-256 hash of the local revocation index for peer sync comparison.
Responses
Section titled “ Responses ”Revocation hash
Media type application/json
object
hash
string
count
integer
timestamp
string format: date-time
Example generated
{ "hash": "example", "count": 1, "timestamp": "2026-04-15T12:00:00Z"}