curl --request GET \
--url https://api.example.com/intelligence/snapshotimport requests
url = "https://api.example.com/intelligence/snapshot"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/intelligence/snapshot', 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.example.com/intelligence/snapshot",
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.example.com/intelligence/snapshot"
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.example.com/intelligence/snapshot")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/intelligence/snapshot")
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{
"orgDid": "did:web:org-a.example",
"did": "<string>",
"at": "2026-08-01T00:00:00.000Z",
"computedAt": "<string>",
"kya": {
"registered": true,
"registeredAt": "2026-05-02T09:12:00.000Z",
"ageDays": 112,
"method": "<string>",
"attestation": "<string>",
"expiresAt": "<string>"
},
"activeMandates": {
"total": 123,
"scopes": {
"humanos.credential.request": 20
},
"actions": {
"urn:via:action:8dac0698-b005-4572-9801-7be144c545a5": 20
},
"bounds": {
"unbounded": 123,
"timeOnly": 123,
"executionOnly": 123,
"both": 123,
"executionsRemaining": 100,
"nearestExpiry": "2026-12-31T23:59:59.000Z",
"byAction": {
"urn:via:action:8dac0698-b005-4572-9801-7be144c545a5": {
"executionsRemaining": 10,
"unbounded": 0,
"nearestExpiry": "2026-12-31T23:59:59.000Z"
}
}
},
"consent": {
"authentication": {
"phoneOtp": 123,
"emailOtp": 123,
"trustedSession": 123,
"passkey": 123,
"kyc": 123,
"unknown": 123
},
"users": {
"total": 123,
"kycVerified": 123,
"kycShare": 0.2
}
},
"chainIntegrity": {
"intact": true,
"brokenChains": 123
}
}
}Agent trust snapshot
Get the risk picture of one agent at a single moment in time.
Answers questions like: was this agent registered, did it hold a valid mandate, who consented to its authority, and does its audit trail verify.
Use your own organization DID in orgDid to check your agents. Use a partner organization’s DID to check theirs; this requires an active sharing grant from that organization, otherwise the request returns 404.
at defaults to now. Set it to a past instant to see what was true at that moment: the answer is rebuilt from the signed event history, not from current state.
See Risk metrics for how sharing grants let you consult another organization’s intelligence.
curl --request GET \
--url https://api.example.com/intelligence/snapshotimport requests
url = "https://api.example.com/intelligence/snapshot"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/intelligence/snapshot', 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.example.com/intelligence/snapshot",
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.example.com/intelligence/snapshot"
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.example.com/intelligence/snapshot")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/intelligence/snapshot")
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{
"orgDid": "did:web:org-a.example",
"did": "<string>",
"at": "2026-08-01T00:00:00.000Z",
"computedAt": "<string>",
"kya": {
"registered": true,
"registeredAt": "2026-05-02T09:12:00.000Z",
"ageDays": 112,
"method": "<string>",
"attestation": "<string>",
"expiresAt": "<string>"
},
"activeMandates": {
"total": 123,
"scopes": {
"humanos.credential.request": 20
},
"actions": {
"urn:via:action:8dac0698-b005-4572-9801-7be144c545a5": 20
},
"bounds": {
"unbounded": 123,
"timeOnly": 123,
"executionOnly": 123,
"both": 123,
"executionsRemaining": 100,
"nearestExpiry": "2026-12-31T23:59:59.000Z",
"byAction": {
"urn:via:action:8dac0698-b005-4572-9801-7be144c545a5": {
"executionsRemaining": 10,
"unbounded": 0,
"nearestExpiry": "2026-12-31T23:59:59.000Z"
}
}
},
"consent": {
"authentication": {
"phoneOtp": 123,
"emailOtp": 123,
"trustedSession": 123,
"passkey": 123,
"kyc": 123,
"unknown": 123
},
"users": {
"total": 123,
"kycVerified": 123,
"kycShare": 0.2
}
},
"chainIntegrity": {
"intact": true,
"brokenChains": 123
}
}
}Headers
Pin request, response, and webhook shapes to a specific dated API version (YYYY-MM-DD). Omit to use the version pinned to your API key (set when the key is created; new keys default to the latest version). New integrations should target the latest version.
^\d{4}-\d{2}-\d{2}$"2026-09-01"
Query Parameters
DID of the organization whose data is consulted. Your own organization DID needs no grant; any other requires an active sharing grant from that organization to yours.
"did:web:org-a.example"
DID of the agent to measure.
"did:key:z6MkhaXgBZDvotDkL5257faiztiGiC2QtKLGpbnnEGta2doK"
Instant the snapshot answers for (ISO 8601). Defaults to now. A past at reconstructs state from the signed event chain — the claims path.
"2026-08-01T00:00:00Z"
Response
The full snapshot body: the question echoed back, then KYA and the active-mandate intelligence.
Organization whose data was consulted.
"did:web:org-a.example"
Agent that was measured.
The instant the snapshot answers for.
"2026-08-01T00:00:00.000Z"
When this snapshot was computed.
The agent registration (KYA).
Show child attributes
Show child attributes
The authority the agent held at at.
Show child attributes
Show child attributes