SDKs & LIBRARIES
Official SDKs
Production-ready SDKs for Python, Node.js, and Java. Type-safe, well-documented, and designed for enterprise use.
Python
v2.4.0
Installation
Terminal
pip install zynoviqQuick Start
import zynoviq
client = zynoviq.Client(api_key="your-api-key")
result = client.analyze(
connector="sap-s4hana",
module="profit-guard",
data={"transaction_id": "TXN-001"}
)
print(result.risk_score)Node.js
v2.4.0
Installation
Terminal
npm install @zynoviq/sdkQuick Start
const { ZynoviqClient } = require("@zynoviq/sdk");
const client = new ZynoviqClient({ apiKey: "your-api-key" });
const result = await client.analyze({
connector: "sap-s4hana",
module: "profit-guard",
data: { transactionId: "TXN-001" }
});
console.log(result.riskScore);Java
v2.4.0
Installation
Terminal
<dependency>
<groupId>com.zynoviq</groupId>
<artifactId>zynoviq-sdk</artifactId>
<version>2.4.0</version>
</dependency>Quick Start
ZynoviqClient client = ZynoviqClient.builder()
.apiKey("your-api-key")
.build();
AnalysisResult result = client.analyze(
AnalysisRequest.builder()
.connector("sap-s4hana")
.module("profit-guard")
.build()
);
System.out.println(result.getRiskScore());Need Help Integrating?
Our developer support team is ready to help you get started.