For the complete documentation index, see llms.txt. This page is also available as Markdown.

Quickstart

This quickstart gives you a first end-to-end Veilio flow.

Prerequisites

  • A Veilio account and API key from Dashboard → API Keys

  • A backend environment (never call Veilio with secrets from frontend or mobile code)

  • curl installed (or use the JavaScript / Python SDK)

1) Create an API key

  1. Sign in at app.veilio.xyz.

  2. Open Dashboard → API Keys.

  3. Click Create API key, choose Standard purpose for day-to-day operations.

  4. Copy the key once — it is shown only at creation time.

2) Set environment variables

For on-premise deployments, set VEILIO_BASE_URL to your instance URL, e.g. https://veilio.your-company.com/api.

3) Tokenize a sensitive value

Expected response:

Store only token in your database — never the raw email.

4) Detokenize when required

Expected response:

The reason field is logged for audit and compliance.

Path
Pattern

Write (create / update user)

Tokenize before insert or update

Read (display profile)

Store and display the token, or a masked placeholder

Action (send email, export, support)

Detokenize only at the business step that needs raw data

Audit

Always pass a clear reason on detokenization

Next steps

Goal
Page

SDK integration (recommended)

SDK Javascript · SDK Python

Direct HTTP / all endpoints

HTTP Integration · API Reference

Production checklist

Security Best Practices · Go-live Checklist

Historical import

Historical Migration Mode

Related links

Last updated

Was this helpful?