Integrate in Minutes

Three ways to add NEXXUS to your AI stack. From zero-code proxy mode to full SDK control, choose what fits your workflow.

Fastest Setup5 minutes setup

Proxy Mode

Change one URL, get instant protection. Zero code changes required.

  • Zero code changes
  • Works with any AI provider
  • Instant protection
  • Real-time blocking
// Before
const client = new OpenAI({
  baseURL: 'https://api.openai.com/v1'
});

// After - Just change the URL
const client = new OpenAI({
  baseURL: 'https://proxy.trustscan.ai/openai/v1'
});
Full Control1 hour setup

SDK Wrapper

Wrap your AI calls with NEXXUS SDK for granular control and custom logic.

  • Granular control
  • Custom thresholds
  • Async evaluation
  • Full evidence access
import { NEXXUS } from '@trustscan/sdk';

const ts = new NEXXUS({
  apiKey: 'ts_xxx'
});

// Wrap any AI call
const response = await ts.evaluate({
  prompt: userMessage,
  response: aiResponse,
  systemId: 'customer-bot'
});
Shift Left15 minutes setup

CI/CD Gate

Block unsafe AI deployments at the pipeline level with our GitHub Action.

  • Pre-deployment checks
  • Automated testing
  • PR blocking
  • Compliance gates
# .github/workflows/ai-trust.yml
name: AI Trust Check
on: [push, pull_request]

jobs:
  trust-scan:
    runs-on: ubuntu-latest
    steps:
      - uses: trustscan/evaluate@v1
        with:
          api_key: ${{ secrets.TRUSTSCAN_KEY }}
          fail_on: FAIL
          mode: DEEP

Works With Any AI Provider

NEXXUS is provider-agnostic. Protect any AI system regardless of the underlying model or infrastructure.

O
OpenAI
A
Anthropic
A
AWS Bedrock
G
Google Vertex
A
Azure OpenAI
H
Hugging Face
C
Cohere
C
Custom Models

Ready to Get Started?

Start with proxy mode in 5 minutes. Upgrade to SDK when you need more control.