Orchestration Workflows
Pre-built workflows that orchestrate multiple providers with intelligent routing, fallbacks, and revenue settlement.
Multi-Provider Credit Scoring
multi-provider-scoringQuery multiple credit bureaus in parallel, merge results using configurable scoring models, and return a unified credit assessment.
Avg latency: 340msProviders: 3
Círculo de CréditoAltScoreBuró de Crédito
Example input
await oberon.orchestrate("multi-provider-scoring", {
"userId": "usr-123",
"country": "MX",
"model": "FICO"
});POS Embedded Lending (BNPL)
pos-bnplProcess buy-now-pay-later applications at point of sale. Scores the customer, generates financing offers, and originates the loan.
Avg latency: 850msProviders: 3
BanRegioCírculo de CréditoRetail POS Network
Example input
await oberon.orchestrate("pos-bnpl", {
"userId": "usr-456",
"amount": 5000,
"merchantId": "chedraui-001"
});KYC Identity Verification
kyc-verificationVerify customer identity using multiple document and biometric providers. Returns a unified verification result.
Avg latency: 1200msProviders: 3
INE VerifierBiometric ProviderSAT CURP
Example input
await oberon.orchestrate("kyc-verification", {
"userId": "usr-789",
"documentType": "INE",
"country": "MX"
});Intelligent Payment Routing
payment-routingRoute payments through the optimal processor based on cost, latency, and success rate. Supports SPEI, CoDi, and card networks.
Avg latency: 200msProviders: 3
STP (SPEI)ProsaMastercard MX
Example input
await oberon.orchestrate("payment-routing", {
"amount": 1500,
"method": "SPEI",
"country": "MX"
});