Authentication
All API requests require authentication using a Bearer token. Tokens are project-scoped and can be generated from the Quantik Mind dashboard under Settings → API.
Include the token in the Authorization header for every request. Tokens are used for access control, rate limiting, and usage tracking.
Header Format
Authorization: Bearer <your_token>
Tokens follow the format qm_sk_<environment>_... (e.g. qm_sk_live_...)
Security Best Practices
- •Store tokens in environment variables or secrets managers
- •Rotate tokens regularly following your security policy
- •Use separate tokens for development and production
- •Monitor token usage via the dashboard
# Use your API token in the Authorization header
curl https://api.quantikmind.com/api/v1/functional/select \
-H "Authorization: Bearer <your_token>..." \
-H "Content-Type: application/json" \
-d '{
"project_id": "my-project",
"tau": 0.70
}'