The Financial Developer Engine for
BaaS Core, RWA & MPC Custody
Integrate double-entry banking ledgers, ERC-3643 securities registries, FedNow instant dispatch, and hardware-isolated Android/iOS key signing with sub-100ms latency.
Global multi-region Anycast gateway routing with sub-50ms round-trip API responses.
Full Postman collections, Swagger documentation, and automated type-safe SDK generation.
Permissioned ONCHAINID compliance registry hooks natively verified in smart contracts.
Cryptographically signed webhook dispatches with replay attack timestamp verification.
Core Banking & Tokenization Endpoints
Explore core REST BaaS payloads and on-chain ERC-3643 securities operations.
/v1/baas/accounts
Provisions a dedicated FBO sub-account held at an FDIC-insured partner bank with unique virtual account and routing numbers.
Required Request Headers
{
"beneficial_owner": {
"entity_name": "Acme Holdings LLC",
"ein": "42-3536633",
"kyb_status": "APPROVED",
"jurisdiction": "US-WY"
},
"currency": "USD",
"account_type": "COMMERCIAL_OPERATING_FBO",
"auto_sweep_yield": true
}
// === 200 OK Response ===
{
"account_id": "acc_fbo_9948271038",
"account_number": "9847291048",
"routing_number": "",
"status": "ACTIVE",
"balance": {
"available": 1420500.00,
"currency": "USD"
},
"fdic_pass_through": true,
"created_at": "2026-09-04T09:30:00Z"
}
Enterprise SDKs & Native Mobile Tooling
Drop-in Kotlin 2.0, Swift 6, and Node.js SDKs with built-in hardware biometric isolation and smart contract interfaces.
Android Kotlin SDK
Native Jetpack Compose banking components with Android Keystore StrongBox biometrics and Google Pay HCE push tokenization.
implementation("com.y3kmarkets:android-core:2.4.0")
iOS Swift SDK
SwiftUI 5 financial components with Secure Enclave FaceID biometrics and Apple Pay PassKit push provisioning.
.package(url: "https://github.com/y3k/swift", from: "2.4")
ERC-3643 Contracts
Solidity 0.8.24 securities contracts with ONCHAINID identity claims, compliance rules, and automated dividend distribution.
npm install @unykorn/erc3643-core
Cryptographic Webhook Signature Verification
Every asynchronous event (FedNow settlement, card transaction swipe, KYC approval, on-chain token transfer) is signed with your tenant's HMAC SHA-256 secret.
const crypto = require('crypto');
function verifyWebhook(rawPayload, signatureHeader, secret) {
const [t, v1] = signatureHeader.split(',').map(p => p.split('=')[1]);
const expected = crypto.createHmac('sha256', secret)
.update(`${t}.${rawPayload}`)
.digest('hex');
return crypto.timingSafeEqual(Buffer.from(v1), Buffer.from(expected));
}