Valta Docs

Audit API

GET /audit

Query parameters:

NameDescription
agentIdFilter to a single agent id.
limitPage size (default 50).
offsetPagination 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 })