Introduction
Overview of the BeQuantum Digital Notary API.
BeQuantum Developer Platform
Welcome to the official documentation for the BeQuantum Digital Notary API. Our platform enables you to verify the origin and authenticity of any digital asset using Post-Quantum Cryptography (PQC).
Quick Start
The fastest way to get started is by calling our v1/certify endpoint with an asset hash.
const response = await fetch('https://api.bequantum.ai/v1/certify', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
asset_hash: 'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855',
user_id: 'optional_uid'
})
});
For more details on key generation, webhooks, and the PQC signatures, explore the sidebar.