Skip to main content
Returns all VerificationRecord objects associated with the specified receipt, ordered by submission time.

Path Parameters

receipt_id
string (UUID)
required
The UUID of the execution receipt whose verifications you want to list.

Response

Returns { "items": [VerificationRecord] }.
items
array
Array of VerificationRecord objects for this receipt.

Errors

StatusDescription
404No receipt with the given receipt_id exists.

Example

curl http://your-node:8042/v1/receipts/018f4e2a-1c3b-7d90-a1b2-3c4d5e6f7890/verifications

Example response

{
  "items": [
    {
      "receipt_id": "018f4e2a-1c3b-7d90-a1b2-3c4d5e6f7890",
      "verifier_id": "auto-verifier",
      "verdict": "verified",
      "automated": true,
      "verified_at": "2025-01-15T10:31:00Z"
    },
    {
      "receipt_id": "018f4e2a-1c3b-7d90-a1b2-3c4d5e6f7890",
      "verifier_id": "auditor-1",
      "verdict": "verified",
      "automated": false,
      "reason": "Output matches expected payment link format.",
      "verified_at": "2025-01-15T11:00:00Z"
    }
  ]
}