Credit Infrastructure Built for Developers
Embed invoice discounting, algorithmic risk scoring, tripartite contracts, and disbursement rails directly into your ERP, core banking platform, or marketplace via REST APIs, reactive Convex mutations, and strictly typed TypeScript SDKs.
REST y OpenAPI
Predictable JSON endpoints with Bearer token authentication, multi-currency payloads, and sub-840ms latency.
Convex Reactive Core
ACID transactional mutations with real-time subscriptions, zero cache invalidation bugs, and built-in scheduler.
Event Webhooks
Cryptographically signed webhooks dispatched instantaneously upon status changes and settlement events.
TypeScript SDK
Full TypeScript typings and interfaces providing compile-time type safety and autocomplete in your IDE.
Live Code & Terminal Reference
Inspect production-ready integration examples across TypeScript SDK, REST API, and Convex mutations.
import { DeepbankClient } from '@deepbank/sdk';
const deepbank = new DeepbankClient({
apiKey: process.env.DEEPBANK_API_KEY!,
environment: 'production',
});
// Descuento de factura con extracción neuronal IA
const assessment = await deepbank.invoices.assess({
file: invoiceBuffer,
format: 'XML_ELECTRONIC_INVOICE',
currency: 'USD',
nominalAmount: 185000.00,
debtorId: 'corp_latam_9482',
});
console.log('Score:', assessment.riskScore); // 96/100
console.log('Status:', assessment.status); // "PRE_APPROVED"
console.log('Latency:', assessment.latencyMs); // 832ms