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. The same call from Python

There is no qntyx package to install — the products are plain REST APIs. Any HTTP client will do:

import httpx

r = httpx.post(
    "https://veil-api.qntyx.io/api/v1/credentials/generate",
    headers={"Authorization": "Bearer qntyx_veil_xxx"},
    json={"credential_type": "aws_key", "plant_location": "github",
          "label": "my-first-trap"},
    timeout=30,
)
r.raise_for_status()
print(r.json())

See Python, JavaScript and Go for the same call in each language.

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