Quickstart
This quickstart gives you a first end-to-end Veilio flow.
Last updated
Was this helpful?
Was this helpful?
export VEILIO_API_KEY="veil_live_xxxxxxxx"
export VEILIO_BASE_URL="https://app.veilio.xyz/api"curl -s -X POST "$VEILIO_BASE_URL/tokenize" \
-H "Authorization: Bearer $VEILIO_API_KEY" \
-H "Content-Type: application/json" \
-d '{"data":"support@veilio.xyz","type":"email"}'{
"token": "tok_abc123...",
"createdAt": "2026-03-26T10:00:00.000Z"
}curl -s -X POST "$VEILIO_BASE_URL/detokenize" \
-H "Authorization: Bearer $VEILIO_API_KEY" \
-H "Content-Type: application/json" \
-d '{"token":"tok_abc123...","reason":"Send user notification"}'{
"data": "support@veilio.xyz",
"accessedAt": "2026-03-26T10:01:00.000Z"
}