> ## Documentation Index
> Fetch the complete documentation index at: https://docs.manthan.systems/llms.txt
> Use this file to discover all available pages before exploring further.

# Trust Records

> GET /trust-records/:id — retrieve a complete Execution Trust Record

## Get an Execution Trust Record

```
GET /trust-records/:id
```

Implemented in `packages/api/src/routes/trust-records.ts`. Calls `application.getTrustRecord(id)` — [`ExecutionTrustRecordRepository.findByTransactionId`](/docs/packages/storage), keyed by `businessTransactionId`.

```bash theme={null}
curl http://localhost:3000/trust-records/b6f1c8de-1a2b-4c3d-8e9f-0a1b2c3d4e5f
```

**Response `200`** — the full [`ExecutionTrustRecord`](/docs/concepts/execution-trust-record), including its `transaction`, and all appended `executions`, `verifications`, `receipts`, and `overrides`.

**Response `404`**

```json theme={null}
{ "error": "Execution Trust Record not found." }
```

<Note>
  This is the only endpoint that returns the trust record's full history in one call — [`GET /verification/:id`](/docs/api/verify#get-the-latest-verification) and [`GET /receipt/latest/:id`](/docs/api/receipt#get-the-latest-receipt) each return only the single most recent entry from these same arrays.
</Note>

## SDK equivalents

<CodeGroup>
  ```ts TypeScript theme={null}
  const trustRecord = await client.trustRecord(businessTransactionId);
  ```

  ```python Python theme={null}
  trust_record = client.trust_records.get(business_transaction_id)
  ```
</CodeGroup>

## Related

<CardGroup cols={2}>
  <Card title="Execution Trust Record" href="/docs/concepts/execution-trust-record">The full model this endpoint returns.</Card>
  <Card title="Trust Chain Audit Guide" href="/docs/guides/trust-chain-audit">Using this endpoint to audit a transaction's full history.</Card>
  <Card title="Storage package" href="/docs/packages/storage">The repository implementation behind this lookup.</Card>
  <Card title="Replay" href="/docs/api/replay">Another consumer of the same trust record.</Card>
</CardGroup>
