INTEGRATIONS
Connect to everything
ESPEIRIA works with your existing stack. Use the REST API, webhooks, or the SDK to integrate with any system.
REST API
AvailableFull CRUD API for rules, configurations, and outputs. OpenAPI 3.0 documented.
Webhooks
AvailableTrigger external actions when rules fire. HTTP callbacks with retry logic.
Custom SDK
AvailableTypeScript/JavaScript SDK for embedding ESPEIRIA logic in your applications.
Salesforce
Coming soonSync configurations and pricing rules with Salesforce CRM.
SAP
Coming soonExport BOMs and pricing to SAP ERP modules.
Oracle
Coming soonIntegrate with Oracle EBS and Cloud for order management.
Power BI
Coming soonVisualize rule execution data and configuration analytics.
REST API
Simple to integrate
A few lines of code to execute rules, read configurations, or trigger outputs.
curl -X POST https://api.espeiria.com/v1/rules/execute \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"rule_id": "pricing_v2", "input": {"qty": 100, "tier": "premium"}}'