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

Available

Full CRUD API for rules, configurations, and outputs. OpenAPI 3.0 documented.

Webhooks

Available

Trigger external actions when rules fire. HTTP callbacks with retry logic.

Custom SDK

Available

TypeScript/JavaScript SDK for embedding ESPEIRIA logic in your applications.

Salesforce

Coming soon

Sync configurations and pricing rules with Salesforce CRM.

SAP

Coming soon

Export BOMs and pricing to SAP ERP modules.

Oracle

Coming soon

Integrate with Oracle EBS and Cloud for order management.

Power BI

Coming soon

Visualize 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"}}'