QUICKSTART

Get your first quantum-secured operation running in under 5 minutes.

1. Create an Account

Go to app.qntyx.io and sign up. Confirm your email.

2. Get Your API Key

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

3. Make Your First API Call

# 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"
  }'

4. Install the Python SDK (Optional)

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}")

5. Monitor for Detections

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"

Next Steps