Valta Docs
Audit API
GET /audit
Query parameters:
| Name | Description |
|---|---|
| agentId | Filter to a single agent id. |
| limit | Page size (default 50). |
| offset | Pagination offset. |
Each log exposes hash and previousHash for hash-chain verification workflows.
bash
curl 'https://valta.co/api/v1/audit?agentId=agent_123&limit=20' \
-H 'x-api-key: vlt_live_...'
SDK equivalent
ts
const { logs, total } = await valta.audit.list({ agentId, limit: 20 })