The developer SDK for cryptographically verifiable AI.
Build trust. Ship proofs. Dominate compliance.

npm install @proofnative/sdkimport { ProofNative } from '@proofnative/sdk'
const pn = new ProofNative({
apiKey: process.env.PN_API_KEY
})const proof = await pn.verify({
model: 'gpt-4',
prompt: 'Analyze claim',
context: claimData
})
// proof.signature ✓
// proof.hash ✓
// proof.timestamp ✓CRYPTOGRAPHIC VERIFICATION. ZERO COMPROMISE.
Every inference cryptographically signed with hardware-backed Ed25519 keys. <100μs signing time.
Prove correctness without revealing sensitive data. Patent-pending tri-modal architecture.
Just-Enough-Thinking prevents context bombs and runaway inference costs. Budget enforcement.
Self-contained cryptographic audit trails. Blockchain-anchored. Tamper-proof forever.
OpenAI, Anthropic, Gemini, local models. LiteLLM unified gateway. One SDK, all providers.
Full type safety, IntelliSense autocomplete, comprehensive JSDoc. Developer experience first.
SIMPLE API. MAXIMUM SECURITY.
const proof = await proofnative.verify({
model: 'claude-3.5-sonnet',
prompt: 'Analyze VA disability claim',
context: {
veteran_id: '123456',
conditions: ['PTSD', 'TBI'],
evidence: [/* medical records */]
},
energy_limit: 50000, // JET tokens
require_consensus: true
})
// Returns Sovereign Proof Bundle:
{
proof_id: 'spb_7x9k2...',
signature: 'ed25519_sig...',
hash: 'sha256_...',
timestamp: 1738454400,
blockchain_anchor: 'polygon_0x...',
proofScore: 0.987,
reasoning_vectors: [...],
audit_trail: [...]
}const validation = await proofnative.validate({
proof_id: 'spb_7x9k2...',
verify_blockchain: true,
verify_signature: true
})
// Returns validation result:
{
valid: true,
signature_valid: true,
blockchain_confirmed: true,
timestamp_verified: true,
hash_integrity: 'PASS',
sheriff_consensus: {
agreement: 0.98,
sheriffs: 5,
collusion_score: 0.02
},
trust_score: 0.987
}PRODUCTION-READY. COMPLIANCE-FIRST.
38 CFR compliant disability claims verification
// VetProof Integration
const claim = await proofnative.verify({
model: 'gpt-4',
prompt: vetproof.buildPrompt(claim),
context: claim.evidence,
compliance: '38_CFR',
require_consensus: true
})
// Blockchain anchor for audit trail
await claim.anchor('polygon')Verifiable pilot medical certification analysis
// SkyProof Integration
const medical = await proofnative.verify({
model: 'claude-3-opus',
prompt: skyproof.analyzeMedical(pilot),
context: medical.records,
compliance: 'FAA_67',
sheriff_count: 5
})
// Generate compliance report
const report = medical.generateFAAReport()SEC-compliant trading algorithm verification
// Trading Algorithm Proof
const trade = await proofnative.verify({
model: 'gpt-4-turbo',
prompt: 'Verify trade compliance',
context: algorithm.parameters,
compliance: 'SEC_Reg_SCI',
energy_limit: 100000
})
// Immutable audit trail
await trade.seal({ timestamp: true })HIPAA-compliant patient data processing
// Healthcare AI with ZK Proofs
const diagnosis = await proofnative.verify({
model: 'claude-3.5-sonnet',
prompt: 'Analyze patient symptoms',
context: patient.encryptedData,
compliance: 'HIPAA',
zero_knowledge: true
})
// Proof without revealing PHI
const zkProof = diagnosis.zkProof()
Join developers building the next generation of verifiable AI systems.
Get started in minutes. No credit card required.