This page used to document pip install qntyx and a
QntyxClient with .veil / .trace / .vault
namespaces. That package was never published and that client does not exist — the
examples were aspirational. Call the product APIs directly instead; they are plain
JSON over HTTPS and there is nothing an SDK would hide.
import httpx
API_KEY = "qntyx_veil_xxx" # from any product dashboard → API Keys
r = httpx.post(
"https://veil-api.qntyx.io/api/v1/credentials/generate",
headers={"Authorization": f"Bearer {API_KEY}"},
json={"credential_type": "aws_key", "plant_location": "github",
"label": "my-first-trap"},
timeout=30,
)
r.raise_for_status()
print(r.json())
Each product has its own host and its own
paths — check that product's page for the routes, and note that only some products
use an /api/v1 prefix.
The entropy API is the one place a published package exists:
pip install getquantumrand
See quantumrand.dev/docs for its usage.