> ## Documentation Index
> Fetch the complete documentation index at: https://hs-df36fa00.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# List Receipt Verifications — GET /v1/receipts/:receipt_id

> List all VerificationRecord entries for an execution receipt, showing every verdict submitted by automated and manual verifiers for it.

Returns all `VerificationRecord` objects associated with the specified receipt, ordered by submission time.

## Path Parameters

<ParamField path="receipt_id" type="string (UUID)" required>
  The UUID of the execution receipt whose verifications you want to list.
</ParamField>

## Response

Returns `{ "items": [VerificationRecord] }`.

<ResponseField name="items" type="array">
  Array of `VerificationRecord` objects for this receipt.

  <Expandable title="VerificationRecord">
    <ResponseField name="receipt_id" type="string (UUID)" required>
      The UUID of the receipt this verification applies to.
    </ResponseField>

    <ResponseField name="verifier_id" type="string" required>
      Identifier of the verifier that submitted this verdict.
    </ResponseField>

    <ResponseField name="verdict" type="string" required>
      The recorded verdict. One of `not_required`, `pending`, `verified`, or `failed`.
    </ResponseField>

    <ResponseField name="automated" type="boolean" required>
      Whether this verdict was produced by an automated verifier.
    </ResponseField>

    <ResponseField name="reason" type="string">
      Explanation provided by the verifier, if any.
    </ResponseField>

    <ResponseField name="verified_at" type="string (ISO 8601)" required>
      UTC timestamp when this verification record was created.
    </ResponseField>
  </Expandable>
</ResponseField>

## Errors

| Status | Description                                    |
| ------ | ---------------------------------------------- |
| `404`  | No receipt with the given `receipt_id` exists. |

## Example

```bash theme={null}
curl http://your-node:8042/v1/receipts/018f4e2a-1c3b-7d90-a1b2-3c4d5e6f7890/verifications
```

### Example response

```json theme={null}
{
  "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"
    }
  ]
}
```
