Screen for Shadow AI Markers

Paste professional text and get a statistical signal of writing patterns associated with AI generation. A screening aid for reviewing possible LLM use across hiring, legal, finance, and healthcare. It is one input requiring human review, not proof, and never a basis for a decision about a person on its own.

Text Analysis

0 words

Analyzing text patterns...

--
--
--
Detection Signals

Get Your API Key

One key for all four APIs: Shadow AI Detection, Policy Verification, Compliance Scanning, and Evidence Signing. 25 free calls/month without a key.

Your API Key
--
Save this key now. It will not be shown again.

Usage This Month

--
API Calls Used
--
Credits Left
--
Estimated Bill
--
Tier

Buy API Credits

One credit = one API call across all four APIs (Detect, Policy, Scan, Sign). Credits never expire. Generate an API key above first.

Free Tier

$0
25 calls/month
No key required. Try all 4 APIs instantly.

500 Credits

$15
$0.03 per call
Great for testing integration across Detect, Policy, and Scan.

10,000 Credits

$150
$0.015 per call
Enterprise volume. 50% savings across all APIs.

Four APIs, One Key

Generate a key, buy credits, and use them across all four endpoints. Every call costs 1 credit.

API 1: Shadow AI Detection LIVE

Detect AI-generated text across 8 industries with context-aware regulatory mapping.

# Detect AI-generated text curl -X POST https://airblackbox.ai/api/detect \ -H "Content-Type: application/json" \ -H "Authorization: Bearer airbb_sk_your_key_here" \ -d '{"text": "The analysis demonstrates...", "context": "legal"}' # Returns: score (0-1), verdict, signals, regulatory_exposure # Contexts: hiring, legal, finance, healthcare, insurance, # customer_support, education, general

API 2: Policy Verification LIVE

Check if an AI action is allowed by your company policy. Approve, deny, or flag for human review.

# Check if an AI action is allowed curl -X POST https://airblackbox.ai/api/policy \ -H "Content-Type: application/json" \ -H "Authorization: Bearer airbb_sk_your_key_here" \ -d '{"action": "delete_user", "model": "gpt-4o", "provider": "openai"}' # Returns: decision (approve/deny/flag), risk_level, matched_rules # Default policy checks: provider allowlist, model blocklist, # high-risk actions, PII patterns, framework allowlist # Pass your own policy object to customize rules

API 3: Compliance Scan LIVE

Scan Python AI code for EU AI Act compliance. Checks Articles 9, 10, 11, 12, 14, 15 plus US hiring laws.

# Scan Python code for EU AI Act compliance curl -X POST https://airblackbox.ai/api/scan \ -H "Content-Type: application/json" \ -H "Authorization: Bearer airbb_sk_your_key_here" \ -d '{"code": "from openai import OpenAI\nclient = OpenAI()..."}' # Returns: score (0-100), articles, findings with fix hints # Checks: error handling, PII, logging, tracing, audit trails, # human oversight, injection defense, output validation # Also: Illinois HB 3773, NYC LL144, California FEHA (hiring AI)

API 4: Evidence Signing NEW

Sign any JSON data with ML-DSA-65 quantum-safe signatures (NIST FIPS 204). Creates tamper-proof evidence packages for EU AI Act Article 12 audits.

# Sign scan results or audit data with ML-DSA-65 curl -X POST https://airblackbox.ai/api/sign \ -H "Content-Type: application/json" \ -H "Authorization: Bearer airbb_sk_your_key_here" \ -d '{"data": {"scan_score": 72, "articles_passed": 4}}' # Returns: signed evidence package with: # signature (ML-DSA-65 quantum-safe) # public_key, signed_at timestamp # HMAC-SHA256 integrity hash # Hand this to your auditor as tamper-proof evidence

Getting Started

Four steps to integrate AI governance into your workflow.

# 1. Generate an API key curl -X POST https://airblackbox.ai/api/keys \ -H "Content-Type: application/json" \ -d '{"email": "[email protected]"}' # 2. Use any of the four APIs with your key # (25 free calls/month without a key) # 3. Check your usage and credit balance curl https://airblackbox.ai/api/keys \ -H "Authorization: Bearer airbb_sk_your_key_here"