Quickstart Guide

Integrate secure audit logging into your application in under 5 minutes.

1

Get your API Key

Sign up for a LogVault account and create a new Organization. Copy your API Key (starts with lv_live_).

2

Install the SDK

We provide official SDKs for Python and Node.js.

Bash
1pip install logvault
3

Log your first event

Initialize the client and send an event. It's fire-and-forget.

Python
1import logvault
2
3# Initialize
4client = logvault.Client("lv_live_abc123...")
5
6# Log an event
7client.log(
8 action="user.login",
9 user_id="user_123",
10 resource="dashboard",
11 metadata={
12 "ip": "1.2.3.4",
13 "status": "success"
14 }
15)

๐ŸŽ‰ You're done!

Go to your Dashboard to see the event appear in real-time.