Cryptographic verification bundle for an agent's reputation
curl --request GET \
--url https://api.mnemom.ai/v1/reputation/{agent_id}/verifyimport requests
url = "https://api.mnemom.ai/v1/reputation/{agent_id}/verify"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.mnemom.ai/v1/reputation/{agent_id}/verify', 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/reputation/{agent_id}/verify",
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/reputation/{agent_id}/verify"
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/reputation/{agent_id}/verify")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mnemom.ai/v1/reputation/{agent_id}/verify")
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{
"agent_id": "<string>",
"score": 123,
"grade": "<string>",
"computed_at": "2023-11-07T05:31:56Z",
"verification": {
"latest_certificate_hash": "<string>",
"merkle_root": "<string>",
"checkpoint_count": 123,
"first_checkpoint": "2023-11-07T05:31:56Z",
"last_checkpoint": "2023-11-07T05:31:56Z",
"hash_chain_valid": true,
"certificate_url": "<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>"
}
}Reputation
Cryptographic verification bundle for an agent's reputation
Returns the score plus a verification block containing: the latest certificate hash, the agent’s Merkle root, checkpoint count, first/last checkpoint timesta…
GET
/
reputation
/
{agent_id}
/
verify
Cryptographic verification bundle for an agent's reputation
curl --request GET \
--url https://api.mnemom.ai/v1/reputation/{agent_id}/verifyimport requests
url = "https://api.mnemom.ai/v1/reputation/{agent_id}/verify"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.mnemom.ai/v1/reputation/{agent_id}/verify', 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/reputation/{agent_id}/verify",
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/reputation/{agent_id}/verify"
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/reputation/{agent_id}/verify")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mnemom.ai/v1/reputation/{agent_id}/verify")
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{
"agent_id": "<string>",
"score": 123,
"grade": "<string>",
"computed_at": "2023-11-07T05:31:56Z",
"verification": {
"latest_certificate_hash": "<string>",
"merkle_root": "<string>",
"checkpoint_count": 123,
"first_checkpoint": "2023-11-07T05:31:56Z",
"last_checkpoint": "2023-11-07T05:31:56Z",
"hash_chain_valid": true,
"certificate_url": "<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>"
}
}⌘I