Light Rider Logo

Quantum API Playground

Experiment with quantum entropy right from your browser.

Using demo API key: demo-key-12345

Get Random Integer

// Response will appear here

Get Random Float

// Response will appear here

Get Random Bytes

// Response will appear here

API Status

Terminal ID: -
Uptime: -
Buffer Health: -
Entropy Rate: -

Code Sample

// Example: Getting a random integer
fetch('https://quantumlifi.com/api/random/int?min=1&max=100', {
  headers: { 'X-API-Key': 'your-api-key' }
})
.then(response => response.json())
.then(data => console.log(`Random number: ${data.value}`))
.catch(error => console.error('Error:', error));