HoundShieldHoundShield
Products
Products by Industry

One firewall · every compliance framework · one deployment

TechnologySOC 2

Engineers pasting API keys & source into Copilot.

HealthcareHIPAA

Clinicians pasting PHI into AI for documentation.

DefenseCMMC L2

DoD contractors leaking CUI into proposal tools.

Legal & FinancePCI

Privileged client data shared with AI assistants.

Five EyesAUKUS

Allied suppliers navigating DISP & Essential 8.

GovernmentSoon

FedRAMP / FISMA — agency AI governance.

SOC 2 · HIPAA · CMMC L2 · 16 engines · <10msAll capabilities
Features
Core Capabilities

Inside the HoundShield firewall engine

AI Prompt Interception

Every LLM request inspected before it leaves the network.

16 Detection Engines

CUI, PII, IP, PHI, secrets, CAGE codes, clearances.

Immutable Audit Trail

SHA-256 tamper-evident logs. C3PAO-ready.

Live Threat Dashboard

Real-time blocked prompts, risk & posture.

Pricing
Pricing

All frameworks included in every plan

Free

Up to 1,000 prompts/mo

$0/mo
Pro

CMMC suite + AI gateway

$199/mo
Growth

PDF reports + C3PAO coord

$499/mo
Enterprise

On-prem · air-gapped

$999/mo
Compare all plans
Partners
Partner Program

Build & grow with HoundShield

RPO / MSP Referral

Co-brand the $499 report · keep the margin.

MSP / Agency

40% per report · 20% recurring · white-label.

Integrations

Drop-in proxy for ChatGPT, Copilot, Claude.

Docs
Documentation

Live in under 5 minutes · no code changes

Quickstart

One URL change → full compliance.

API Reference

Gateway, classifier & audit endpoints.

FAQ

Searchable answers — pricing, HIPAA, CUI.

16 engines · <10ms scan
Sign inStart free
Quickstart — 15 minutes to C3PAO-ready

Deploy HoundShield in 15 minutes.

By the end of this guide your team's AI usage will be intercepted, classified, and generating an audit trail your C3PAO assessor can verify.

No firewall rulesNo network changesWorks with any AI SDK

Prerequisites

  • Docker Desktop installed and running — download here
  • HoundShield license key — get one free
  • Your AI provider API key (OpenAI, Anthropic, Google, or OpenRouter)
01

Run the installer

~2 min

One curl command pulls the Docker image, starts the proxy, and confirms it's running. Requires Docker Desktop.

bash
curl -sSL https://houndshield.com/install | bash

Or non-interactive: HOUNDSHIELD_LICENSE_KEY=<key> UPSTREAM_API_KEY=<key> bash install.sh -y

02

Change one environment variable

~30 sec

Replace your AI provider's base URL with the proxy. Every SDK that speaks OpenAI-compatible APIs works — ChatGPT, Copilot, Claude, Gemini.

bash
# .env or your shell profile
OPENAI_BASE_URL=http://localhost:8080/v1
# ANTHROPIC_BASE_URL=http://localhost:8080/v1  # Claude
# GOOGLE_BASE_URL=http://localhost:8080/v1      # Gemini
03

Test: send a CUI prompt

~30 sec

Verify the proxy is intercepting. This prompt contains a DoD contract number — it should be BLOCKED.

bash
curl -X POST http://localhost:8080/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $OPENAI_API_KEY" \
  -d '{
    "model": "gpt-4o-mini",
    "messages": [{"role":"user","content":"W911NF-23-C-0001 status?"}]
  }'

Expected response: { "error": { "code": "content_policy_violation", "message": "BLOCKED — CUI detected" } }

04

Export your C3PAO audit report

~30 sec

Download a PDF that documents every AI prompt your team sent, which CMMC controls were triggered, and your SPRS impact. Hand this to your C3PAO.

bash
# From the dashboard — or via API:
curl "https://houndshield.com/api/reports/generate?format=pdf&from=2026-04-01T00:00:00Z&to=2026-04-30T23:59:59Z" \
  -H "Authorization: Bearer $HOUNDSHIELD_API_KEY" \
  --output cmmc-audit-report.pdf

Works with every AI provider

OpenAI / ChatGPT
OPENAI_BASE_URL=http://localhost:8080/v1
Anthropic / Claude
ANTHROPIC_BASE_URL=http://localhost:8080/v1
Google / Gemini
GOOGLE_BASE_URL=http://localhost:8080/v1
LangChainPython
openai = OpenAI(base_url="http://localhost:8080/v1")
LlamaIndexPython
llm = OpenAI(api_base='http://localhost:8080/v1')
OpenRouter800+ models
OPENROUTER_BASE_URL=http://localhost:8080/v1

You're protected.

Your C3PAO assessment PDF is one click away in the dashboard. Every AI prompt your team sends is now scanned, logged, and audit-ready.

Open Dashboard Download C3PAO PDF