Getting Started
Set up authentication and make your first API call in minutes.
API Reference
Complete REST API documentation with OpenAPI spec.
Webhooks
Real-time notifications for BHI changes, workflows, and more.
Workflows
Automate multi-step processes via API with scheduling support.
Changelog
Track API changes, new features, and breaking changes.
Powerful APIs for Credit Operations
Our REST APIs provide programmatic access to all Elysium Nexus capabilities. Simple authentication, consistent response formats, and comprehensive documentation.
Data Ingestion
Import customers, accounts, and transactions from any source.
Analytics (BHI)
Calculate and retrieve Business Health Index scores.
Fraud Signals (Advisory)
Evaluate advisory fraud signals and manage cases. Requires human review.
KYC/AML Orchestration
Workflow orchestration for compliance review. Not automated decisions.
Insights & NBA
Generate Next-Best-Action recommendations.
Workflows
Automate business processes with step-by-step execution.
SaaS Metrics
Quick Ratio, MRR trends, and revenue health indicators.
Cash Runway
Probabilistic runway projections with confidence intervals.
Portfolio Insights
Portfolio-level narrative analysis with concentration metrics.
What-If Analysis
Simulate customer churn impact on portfolio metrics.
Start Building in Minutes
// Calculate BHI for all customers
const response = await fetch(
'https://api.elysium-nexus.com/v1/bhi/calculate-from-db',
{
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer ely_sk_YOUR_API_KEY'
}
}
);
const { results, summary } = await response.json();
console.log(`Calculated BHI for ${summary.successful} customers`);API Status & Roadmap
Current availability and upcoming features
Available Now
- REST API (Data, BHI, NBA, Workflows)
- SaaS Metrics & Portfolio Intelligence APIs
- Cash Runway & Probabilistic Forecasting
- What-if churn impact analysis
- API key authentication with RBAC scopes
- GraphQL API with security hardening
- Multi-tenant isolation
- OpenAPI 3.0 specification
- Report generation (JSON, CSV, PDF)
- Workflow scheduling (cron)
Coming Soon
- TypeScript SDK
- Python SDK