
Quick Start
Get running in under 5 minutes
Integrate Securelytix into your application without changing your existing architecture. Generate an API key, connect your application, and start protecting sensitive data with simple REST APIs.
The Path
Five steps, start to finish
- 01
Create your workspace
Sign up and spin up a Securelytix workspace. No infrastructure to provision, nothing to install first.
- 02
Generate an API key
Grab a scoped API key from your dashboard. Keys can be limited to specific fields, environments, or policies.
- 03
Install the SDK or use REST APIs
Pull in first-class SDK for your stack, or call the REST endpoints directly. Same design either way.
- 04
Make your first tokenize request
Send one field to the vault and get a token back. That token is what your app, logs, and LLMs see from now on.
- 05
Start protecting sensitive data
Roll it out across the fields that matter. Your architecture doesn't change. The sensitive values just aren't there anymore.
terminal
# 1. install (docker)
docker run -d \
--name securelytix-sdk \
-p 8080:8080 \
-v /etc/machine-id:/host-machine-id:ro \
-e VAULTKEY_PORT=8080 \
-e DATABASE_URL="postgresql://vaultkey:vaultkey@host.docker.internal:5432/vaultkey?sslmode=disable" \
-e API_KEY="<your-api-key>" \
securelytix2026/dev-sdk:1.0.5
# 2. tokenize text
curl -sS -X POST "http://localhost:8080/api/v1/tokenize" \
-H "Content-Type: application/json" \
-d '{
"data": {
"email": "user@example.com",
"name": "user example"
}
}'Try It Live
Step five, right now
Skip the terminal paste a prompt below and watch Securelytix run it through Vaultkey in your browser before it ever reaches an LLM.
Securelytix Vaultkey Sandbox
Live EnclaveTest real-time PII & PCI tokenization, scoped to a declared purpose, before prompts reach AI
Raw Unsanitized Prompt (Your Application)
Please verify account for Sarah Connor (SSN: 999-12-8401, email: sarah@cyberdyne.io). Her credit card is 4532-9012-8812-4019.
Sanitized Output (Passed to LLM)
Click "Tokenize Prompt" to see real-time field-level vaulting...
This sandbox runs entirely client-side for demonstration. No prompt data is transmitted or stored.

Ready when you are
Protect your first field in 5 minutes
No infrastructure to stand up. Generate a key, make one request, and sensitive data stops leaving your control.