OpsViz

5-Minute Quickstart

Get your first AI agent reporting to OpsViz in about 5 minutes — no code required. You'll create an agent, send a test event with one click, then paste your tracking link into whatever runs your AI (n8n, Zapier, Make, Lindy, or anything that can call a web address).

OpsViz only ever receives operational metadata — token counts, model name, cost, and duration — never your prompts, responses, or AI provider keys.

Privacy note: OpsViz receives only operational metadata — event type, token counts, model name, cost, and duration. Your prompts, responses, user data, and AI provider credentials are never sent to OpsViz.
1

Create your account

Sign in at opsviz.io/auth using Google, GitHub, or your email address (we'll send you a magic link — no password needed).

Your organisation is created automatically from your email domain.

2

Add your first agent

In the dashboard, click Add Agent. Give it a name (e.g. "Support Bot") and click Create.

You'll get a unique webhook URL (a webhook is just a web address that receives data — like an email address for your dashboard) which we show as:

[WEBHOOK_URL]

Copy this URL — you'll paste it into your AI platform.

3

Send your first event

In your dashboard, open your agent and click Send test event — you'll see it appear in your dashboard within seconds. That's it!

Prefer the command line?

Send a test event with curl (replace [WEBHOOK_URL] with your agent's webhook URL):

curl -X POST [WEBHOOK_URL] \
  -H "Content-Type: application/json" \
  -d '{
    "event_type": "task.completed",
    "agent_name": "Support Bot",
    "model": "claude-sonnet-4-6",
    "tokens_in": 1200,
    "tokens_out": 800,
    "status": "success"
  }'

You should see the event appear on your dashboard within seconds.

4

Connect your platform

Now wire up your actual AI agent to send events automatically. Choose your platform:

You're live!

Your agent is now reporting to OpsViz. Visit your dashboard to see spend, events, and agent health in real time (Starter+ plan).

Free tier tip

The Free plan requires manual refresh. Upgrade to Starter ($29/mo) for real-time updates and email alerts.

View plans →