Get your first quantum-secured operation running in under 5 minutes.
Go to app.qntyx.io and sign up. Confirm your email.
In any product dashboard, go to API Keys in the sidebar and click Create Key.
Copy the key immediately — it's only shown once:
qntyx_veil_a3f7c2e19b4d5f8e1c2a3b4d5e6f7a8b
# Deploy a quantum honeypot credential
curl -X POST https://veil-api.qntyx.io/api/v1/credentials/generate \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"credential_type": "aws_key",
"plant_location": "github",
"label": "my-first-trap"
}'
pip install qntyx
from qntyx import QntyxClient
client = QntyxClient(api_key="qntyx_veil_xxx")
trap = client.veil.generate(
credential_type="aws_key",
plant_location="github",
label="my-first-trap"
)
print(f"Trap deployed: {trap.credential_id}")
print(f"Full value: {trap.full_value}")
When an attacker uses your trap credential, you'll get a detection alert. Check your dashboard or poll the detections endpoint:
curl https://veil-api.qntyx.io/api/v1/detections/ \
-H "Authorization: Bearer YOUR_API_KEY"