Skip to main content
GET
/
v1
/
compliance
/
attestation
Regulator-ready live attestation over the receipt chain
curl --request GET \
  --url https://api.example.com/v1/compliance/attestation \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://api.example.com/v1/compliance/attestation"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.example.com/v1/compliance/attestation', 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/v1/compliance/attestation",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);

$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/v1/compliance/attestation"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("Authorization", "Bearer <token>")

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/v1/compliance/attestation")
.header("Authorization", "Bearer <token>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.example.com/v1/compliance/attestation")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
{
  "version": "1",
  "tenantId": "018f1234-5678-7abc-def0-123456789abc",
  "generatedAt": "2026-07-10T12:00:00.000Z",
  "scope": "<string>",
  "disclaimer": "<string>",
  "period": {
    "label": "30d",
    "days": 30,
    "fromSeq": 1,
    "toSeq": 4210,
    "fromTs": "2026-06-10T00:00:00.000Z",
    "toTs": "2026-07-10T00:00:00.000Z"
  },
  "totals": {
    "receipts": 4210,
    "chainVerified": true,
    "chainVerifiedCount": 4210,
    "signaturesVerified": true,
    "signaturesVerifiedCount": 4210,
    "policyEvaluated": 4210,
    "policyEvaluatedPct": 100,
    "enforcementActions": 37,
    "upstreamFailures": 5
  },
  "checkCoverage": [
    {
      "name": "GUARDRAIL",
      "receipts": 4210,
      "pct": 100
    }
  ],
  "packsInForce": [
    {
      "framework": "eu_ai_act",
      "version": "v1",
      "status": "draft",
      "packHash": "a1b2c3…"
    }
  ],
  "packVersionsObserved": [
    "v1"
  ],
  "signingKeyIds": [
    "<string>"
  ],
  "merkle": {
    "algorithm": "RFC6962-SHA256",
    "leafCount": 4210,
    "root": "9f2c…"
  },
  "anchor": {
    "type": "merkle_root_v1",
    "root": "9f2c…",
    "note": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

Response

version
string
required
Example:

"1"

tenantId
string
required
Example:

"018f1234-5678-7abc-def0-123456789abc"

generatedAt
string
required
Example:

"2026-07-10T12:00:00.000Z"

scope
string
required

Exact, provable scope statement — surface verbatim.

disclaimer
string
required

Honesty posture — surface verbatim.

period
object
required
totals
object
required
checkCoverage
object[]
required
packsInForce
object[]
required
packVersionsObserved
string[]
required
Example:
["v1"]
signingKeyIds
string[]
required

Signing key_ids that produced receipts in the period.

merkle
object
required
anchor
object
required