curl --request GET \
--url https://api.mnemom.ai/v1/transparency/consistencyimport requests
url = "https://api.mnemom.ai/v1/transparency/consistency"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.mnemom.ai/v1/transparency/consistency', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.mnemom.ai/v1/transparency/consistency",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.mnemom.ai/v1/transparency/consistency"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.mnemom.ai/v1/transparency/consistency")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mnemom.ai/v1/transparency/consistency")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"construction": "mnemom.transparency.rfc6962/v1",
"first": 2,
"second": 2,
"first_root": "<string>",
"second_root": "<string>",
"hashes": [
"<string>"
]
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}Consistency proof that the log grew by append only.
Returns an RFC 6962 / RFC 9162 §2.1.4 consistency proof that the tree of size second contains the tree of size first as a prefix — i.e.
curl --request GET \
--url https://api.mnemom.ai/v1/transparency/consistencyimport requests
url = "https://api.mnemom.ai/v1/transparency/consistency"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.mnemom.ai/v1/transparency/consistency', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.mnemom.ai/v1/transparency/consistency",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.mnemom.ai/v1/transparency/consistency"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.mnemom.ai/v1/transparency/consistency")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mnemom.ai/v1/transparency/consistency")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"construction": "mnemom.transparency.rfc6962/v1",
"first": 2,
"second": 2,
"first_root": "<string>",
"second_root": "<string>",
"hashes": [
"<string>"
]
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}Query Parameters
The earlier tree_size — typically one you already hold a signed root for.
x >= 1The later tree_size. Defaults to the log's current size. Must be >= first; a request where it is smaller is rejected rather than answered, because a shrinking log is itself the finding.
x >= 1Response
Consistency proof between the two tree sizes.
Named construction the proof is built against. Versioned wire string — a new construction mints a new identity rather than editing this one, so a verifier can never silently apply the wrong rules.
"mnemom.transparency.rfc6962/v1"The earlier tree_size.
x >= 1The later tree_size.
x >= 1Merkle root at tree_size = first. Compare this against the signed root you already hold for that size — if it differs, the log was rewritten.
^[0-9a-f]{64}$Merkle root at tree_size = second.
^[0-9a-f]{64}$RFC 6962 §2.1.2 consistency path, in the order the §2.1.4.2 verification algorithm consumes it. Empty ONLY when first === second (nothing was appended). Note that when first is an exact power of two the generator omits MTH(D[0:first]) because the verifier re-derives it from first_root.
^[0-9a-f]{64}$