Access your account

Manage your audits, subscription, and agents from here.

or with magic link
?

Welcome back

FREE
Subscription
> cargando…
GitHub Repositories
Prefer to paste the repo manually? →
Don't know how to get a token? →
  1. Go to github.com/settings/tokens
  2. "Generate new token" → "Generate new token (classic)"
  3. In "Note", give it a name (e.g. "datotecaudit-audit")
  4. In "Expiration", choose "No expiration" or 90 days
  5. Check the repo box (the top one)
  6. Scroll down and click "Generate token"
  7. Copy the token (starts with ghp_) — it's only shown once
  8. Paste it above

If you signed in with GitHub, that same access is used automatically — you only need to enter a token if not.

Agent Connections
> cargando…
How to integrate your agent →
// Log an action (no approval needed):
fetch('https://datotecaudit.com/api/agent-trace', {
method: 'POST',
headers: {
'Authorization': 'Bearer TU_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({ action: 'check_price', cost: 0.01 })
});

// Log an action that needs human approval:
const r = await fetch('https://datotecaudit.com/api/agent-trace', {
method: 'POST',
headers: { 'Authorization': 'Bearer TU_API_KEY', 'Content-Type': 'application/json' },
body: JSON.stringify({ action: 'send_email', cost: 0.02, requires_approval: true })
});
const { approval_id } = await r.json();

// The agent waits and polls every few seconds:
const check = await fetch(
`https://datotecaudit.com/api/agent-approval-status?approval_id=${approval_id}`,
{ headers: { 'Authorization': 'Bearer TU_API_KEY' } }
);
const { status } = await check.json(); // 'pending' | 'approved' | 'rejected'
Recent Audits
> cargando…
Pending Approvals (Human-in-the-Loop) Professional+
> cargando…

Approve or reject in one click the actions your agents propose before running them — available from the Professional plan.

Upgrade plan →
Your plan usage
> loading…
Cost Alerts Professional+
> cargando…

Automatic per-agent cost monitoring, with real-time alerts if something spikes.

Upgrade plan →
AI Act Compliance Report Enterprise

Generate a report with your traces, approvals, and audits for the period — ready for the European AI Regulation.

The AI Act compliance report, with full human oversight history, is included in the Enterprise plan.

Upgrade plan →
Account Activity
> loading…
Cancel subscription
> loading…