Skip to main content
This tutorial walks you through connecting your first AI agent to Veritrix — from account creation to seeing live traces flow into the Traces tab. By the end, you’ll have:
  • A Veritrix account and project
  • The Veritrix SDK snippet added to your agent code
  • A validated connection
  • Live traces streaming into the dashboard

Step 1: Register on Veritrix

Head to app.veritrix.xyz and create an account. You can sign up with Google, GitHub, or email. Once your account is ready, you’ll land on the Veritrix dashboard. Screenshot 2026 07 20 At 3 22 38 PM

Step 2: Open the Get Started page

From the dashboard, click the Start button in the top navigation. This takes you to the /get-started onboarding page, where Veritrix helps you generate a ready-to-paste SDK snippet. Screenshot 2026 07 20 At 3 33 17 PM

Step 3: Choose how you want to instrument your agent

On the Get Started page, pick the setup path that matches where your agent code lives:

Fresh Code

Start from a blank template Veritrix generates for you. Great for exploring the product before wiring it into a real project.

Google Colab Notebook

Get a snippet pre-configured for a Colab environment. Ideal for prototypes, demos, and experiments.

Existing Codebase

Drop the snippet into an agent you already have running in your own repo or service.
Screenshot 2026 07 20 At 3 25 15 PM
Not sure which to pick? Choose Existing Codebase if you already have an agent you want to observe, or Fresh Code if you just want to see Veritrix in action end-to-end.

Step 4: Copy the generated code snippet

Based on your selection, Veritrix generates a code snippet pre-filled with your project’s API key and endpoint. Copy it and paste it into your agent code — as close as possible to where your agent starts running, so it can capture every LLM call, tool use, and handoff. Screenshot 2026 07 20 At 3 26 24 PM A typical snippet looks like this:
Add to your agent entrypoint
Call veritrix.init() before you import or instantiate your LLM clients and agent framework. That’s how Veritrix auto-instruments everything downstream.

Step 5: Validate the connection

Back on the Get Started page, click Verify. Veritrix will wait for the first trace from your agent and confirm the SDK is connected correctly. Run your agent once (locally, in Colab, or in your service) after adding the snippet, then hit Verify. Screenshot 2026 07 20 At 3 27 37 PM When validation succeeds, you’ll see a success state and be redirected into the product.

Step 6: View live traces

Every time your agent runs, Veritrix captures the run via the ingest API and displays it in the Traces tab in real time. Open the tab to see:
  • The full trace waterfall for each run
  • LLM calls, tool executions, and agent handoffs as spans
  • Latency, token usage, and cost per span
Screenshot 2026 07 20 At 3 29 11 PM Click any trace to drill into the waterfall view and inspect exactly what your agent did.

What’s next