PRO
API Open · Engine Closed
Agent Firewall
Scans URLs and content for prompt injections, phishing attempts, and malicious domains. Protects AI agents from manipulation.
POST /v1/firewall/scan
GET /v1/firewall/stats
BUSINESS
Fully Closed
Cryptographic Notary
Issues legally admissible cryptographic certificates proving price discrimination and platform manipulation. Blockchain-anchored.
POST /v1/notary/price
POST /v1/notary/transaction
GET /v1/notary/verify/:certId
FREE
Fully Closed
Dark Pattern Detector
Detects all 17 OECD-classified dark patterns. Generates EU DSA/DMA compliant audit reports with legal references.
POST /v1/dark-pattern/audit
POST /v1/dark-pattern/scan
GET /v1/dark-pattern/patterns
PRO
Join Open · Engine Closed
Collective Bargaining
Groups buyers anonymously to negotiate bulk discounts. Automatic demand pooling and negotiation triggering.
POST /v1/bargaining/join
GET /v1/bargaining/pools
GET /v1/bargaining/pool/:id
BUSINESS
Fully Closed
Gov Intelligence
Regulatory compliance database and government intelligence. Checks domain compliance against international regulations.
GET /v1/gov/check/:domain
GET /v1/gov/regulations
POST /v1/gov/compliance-report
FREE
API Open · DB Closed
Price Time Machine
Historical price tracking and fake discount detection. Track prices across platforms and detect artificial price inflation before sales.
POST /v1/price/track
GET /v1/price/history/:platform/:productId
GET /v1/price/compare?product_name=...
PRO
Fully Closed
WAB Neural Engine
Local AI inference engine for URL analysis, content classification, and text embeddings. Runs entirely on WAB infrastructure.
POST /v1/neural/analyze-url
POST /v1/neural/classify
POST /v1/neural/embeddings
FREE
Fully Open
WAB Protocol
Open wab.json trust protocol specification. Validate any website's WAB compliance. Designed to become a web standard.
POST /v1/protocol/validate
GET /v1/protocol/check/:domain
GET /v1/protocol/schema
FREE
Report Open · Rules Closed
Bounty Network
Community-powered threat reporting and bug bounty network. Report dark patterns, fake reviews, and manipulation for rewards.
POST /v1/bounty/report
GET /v1/bounty/report/:id
GET /v1/bounty/leaderboard
PRO
API Open · DB Closed
Affiliate Intelligence
Detects affiliate link manipulation, cookie stuffing, and tracking pixel abuse. Protects creators and marketers from fraud.
POST /v1/affiliate/scan-url
POST /v1/affiliate/scan-html
GET /v1/affiliate/stats
All module endpoints require an API key. Get your key from the WAB Workspace, then include it in every request:
Option 1: Authorization Header (Recommended)
curl -X POST https://www.webagentbridge.com/api/v1/firewall/scan \
-H "Authorization: Bearer wab_live_pro_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com", "content": "page content..."}'
Option 2: X-WAB-Key Header
curl -H "X-WAB-Key: wab_live_pro_YOUR_KEY" \
https://www.webagentbridge.com/api/v1/protocol/check/example.com
Option 3: Query Parameter
GET /api/v1/bounty/stats?api_key=wab_live_fre_YOUR_KEY
Generate API Key
curl -X POST https://www.webagentbridge.com/api/v1/keys/generate \
-H "Content-Type: application/json" \
-d '{"plan": "FREE", "owner": "Your Name", "email": "you@example.com"}'
Key Management Endpoints
POST /api/v1/keys/generate — Create a new API key
POST /api/v1/keys/validate — Validate an existing key
GET /api/v1/keys/usage — Check usage and quotas
POST /api/v1/keys/revoke — Revoke a key
POST /api/v1/keys/rotate — Rotate a key (revoke old, issue new)