Back to Documentation

Quick Start Guide

Get running in under 10 minutes

This guide will get you up and running with QBitShield's quantum-safe key generation in minutes. Follow these simple steps to start securing your applications with enterprise-grade quantum cryptography.

1

Get Your API Key

2 minutes

Sign up and get your enterprise API key

# Demo keys for testing:
demo_key_for_testing
QSDemo
2

Make Your First Request

30 seconds

Generate your first quantum-safe key

curl -X POST "http://localhost:8000/api/v2/generate" \
  -H "X-API-Key: demo_key_for_testing" \
  -H "Content-Type: application/json" \
  -d '{"security_level": 256, "enable_nist_validation": true}'
3

Integrate Into Your App

5 minutes

Add quantum-safe security to your application

const response = await fetch('/api/v2/generate', {
  method: 'POST',
  headers: {
    'X-API-Key': 'your-api-key',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    security_level: 256,
    enable_nist_validation: true
  })
});

const keyData = await response.json();
console.log('Quantum key:', keyData.key);

What You Get Out of the Box

NIST SP 800-22 validated randomness
Sub-0.6ms key generation
Enterprise-grade scalability
Real-time analytics dashboard
Comprehensive API documentation
24/7 enterprise support