Skip to main content

Quick Start

Get started with VaryOn in minutes using our SDKs and APIs.
# Python
pip install varyon

# JavaScript/TypeScript  
npm install @varyon/sdk

# CLI
npm install -g @varyon/cli

Available SDKs

Python

Full-featured SDK with type hints and async support
pip install varyon

JavaScript/TypeScript

Modern SDK with TypeScript definitions
npm install @varyon/sdk

Go

High-performance SDK for backend services
go get github.com/varyon/go-sdk

API Overview

Base URL

https://api.varyon.ai/v1

Authentication

Authorization: Bearer sk_live_your_api_key

Core Endpoints

ProductEndpointDescription
DriftPOST /drift/analyzeDetect shadow principals
ConvergencePOST /convergence/analyze-marketDetect collusion
CascadePOST /cascade/simulateRun risk simulations
MeridianPOST /meridian/quality-checkCheck data quality

Integration Patterns

Real-time Monitoring

@drift.monitor("agent_123")
def on_shadow_detected(alert):
    if alert.confidence > 0.8:
        pause_agent()
        notify_compliance()

Batch Analysis

results = drift.analyze_batch(
    decisions=last_1000_decisions,
    generate_report=True
)

Webhook Integration

POST /v1/webhooks
{
  "url": "https://your-app.com/webhook",
  "events": ["drift.shadow_detected"],
  "secret": "whsec_..."
}

Resources

Support