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

# Transaction monitor

> Search, filter, and investigate assessments and payment events in one timeline.

**Monitor de transacciones** (`/dashboard/transactions`) is the detailed operational view. Use it when the **Panel** summary is not enough and you need filters, exports, or behavior analytics.

## Summary cards

At the top you will find same-day counters (respecting your **browser timezone**):

* Transactions today
* Volume today
* Flagged / pending / AI-detected counts

These align with the protection metrics philosophy: local calendar day, not server UTC.

## Tabs

| Tab                | Purpose                                               |
| ------------------ | ----------------------------------------------------- |
| **Transacciones**  | Searchable list with status, amount, risk score, tags |
| **Comportamiento** | Seven-day activity chart and volume patterns          |
| **Alertas**        | Behavior-based alerts for analysts                    |

## Simulations in the feed

Rows originating from **Simulación** are tagged so analysts do not confuse them with live processor events. Deduping by session reference prevents duplicate rows when the same assessment is indexed once.

## Linking to cases

From a transaction you can open or create an **expediente** (case) when investigation requires regulatory filing.

## API correlation

Each row maps to a persisted assessment session. When integrating, store the `session_id` returned by assess to reconcile dashboard rows with your order IDs.

```bash theme={null}
# Example: assess stores session_id for later lookup in the monitor
curl -X POST "$CLAUSUM_API_BASE/api/v1/assess" \
  -H "Authorization: Bearer $CLAUSUM_SECRET_KEY" \
  ...
```

## Related

<CardGroup cols={2}>
  <Card title="Dashboard overview" icon="chart-line" href="/guides/dashboard-overview">
    High-level KPIs and trends.
  </Card>

  <Card title="Case management" icon="folder-open" href="/guides/case-management">
    Expedientes API and workflow.
  </Card>
</CardGroup>
