Skip to content
Seal
Esc
↑↓navigate↵open⌘Jpreview

Verify the organization's tamper-evident audit hash chain (SEA-44)

GET/organizations/{organizationSlug}/audit/verify
Authorization
AuthorizationBearer token · headerrequired

Pass your API key as a Bearer token. API keys are scoped to specific operations — configure scopes in your organization's Settings → Developer → API Keys.

Path parameters
organizationSlugstringrequired
Responses
200

Chain intact

okbooleanrequired
checkedintegerrequired
unbrokenPrefixintegerrequired
tipHashstring | null
tipSequenceinteger | null
firstBreakobject | null
Show properties
idstring
sequenceinteger | null
expectedstring
actualstring | null
401

Missing or invalid API key

typestringrequired

Machine-readable error code

statusintegerrequired

HTTP status code

titlestringrequired

Human-readable error message

detailsobject

Field-level validation errors

403

Forbidden

409

Chain broken or tip mismatch

okbooleanrequired
checkedintegerrequired
unbrokenPrefixintegerrequired
tipHashstring | null
tipSequenceinteger | null
firstBreakobject | null
Try it
Server
Authorization
Parameters
Request
curl -X GET "https://api.seal.nyc/api/v1/organizations/string/audit/verify" \
  -H "Authorization: Bearer YOUR_TOKEN"
Response
{
  "ok": true,
  "checked": 0,
  "unbrokenPrefix": 0,
  "tipHash": "string",
  "tipSequence": 0,
  "firstBreak": {
    "id": "string",
    "sequence": 0,
    "expected": "string",
    "actual": "string"
  }
}