Send events.
Get answers.
Vanta collects structured events from your app and makes them searchable, filterable, and useful.
Stream
live
SDK
Three lines to start.
Official SDKs for Node.js, Web, React, and Next.js. Track events, query data, and integrate with your stack.
npm install @vanta-dev/node
import { Vanta } from '@vanta-dev/node'
const vanta = new Vanta({
apiKey: process.env.VANTA_API_KEY
})
await vanta.track({
event: 'discord.command',
data: {
command: '/deploy',
guild: 'acme-eng'
}
})
const results = await vanta.query({
event: 'discord.command',
filters: [
{ field: 'data.guild', op: 'eq', value: 'acme-eng' }
],
time: { last: '24h' }
})