Partner with us to unlock the full potential of your digital journey. Our experts are ready to help you innovate, scale, and succeed.
Integrate credential verification in minutes with our comprehensive API and auto-generated SDKs. Sub-10ms response times guaranteed.
Everything you need to integrate credential verification into your application
Lightning-fast verification with P50 latency of 3ms and P95 of 8ms. Built for real-time applications.
Fully documented REST API with interactive documentation. Auto-generate clients for any language.
Real-time notifications for credential events. Subscribe to issuance, verification, and revocation events.
API key authentication, rate limiting, and IP allowlisting. SOC 2 and ISO 27001 compliant.
Official SDKs for Node.js, Python, Go, and Rust. Type-safe clients with full IDE support.
Monitor API usage, latency, and error rates. Detailed logs for debugging and compliance.
Start verifying credentials in under 5 minutes
// Verify a credential
const verification = await client.credentials.verify({
credentialId: 'cred_abc123',
// Or verify by QR code data
// qrData: 'trustmehub://verify/cred_abc123?sig=...',
});
console.log(verification.verified); // true
console.log(verification.status); // 'active'
console.log(verification.issuedAt); // '2024-01-15T...'
console.log(verification.issuer.name); // 'State University'
console.log(verification.blockchainProof.txHash); // 0x...// Issue a new credential
const credential = await client.credentials.create({
templateId: 'tmpl_degree_certificate',
recipient: {
name: 'John Smith',
email: 'john@example.com',
},
claims: {
degree: 'Bachelor of Science',
major: 'Computer Science',
graduationDate: '2024-05-15',
gpa: '3.85',
},
expiresAt: '2034-05-15T00:00:00Z',
});
console.log(credential.id); // cred_abc123
console.log(credential.blockchainTxHash); // 0x...RESTful API with OpenAPI 3.0 documentation
/v1/credentials/v1/credentials/{id}/v1/credentials/{id}/verify/v1/credentials/{id}/revoke/v1/credentials/batch/{batchId}/v1/webhooksGet your API key and start verifying credentials in minutes.