Block PRs that introduce failing AI dependencies. Automate OWASP scans in CI/CD. Retrieve signed evidence PDFs programmatically. All via a single REST API authenticated with a header key.
All API keys are passed exclusively via the X-VerditNxtGen-Key HTTP request header. This is enforced at the Cloudflare edge — no exceptions, no workarounds.
X-VerditNxtGen-Key in:run: step outputs// ✓ CORRECT — key in header fetch('https://verditnxtgen.com/api/v1/tools/langgraph-server', { headers: { 'X-VerditNxtGen-Key': 'vnxt_your_key_here' } }); // ✗ WRONG — key in body (P3-01 vulnerability, returns 401) fetch('/api/v1/tools/langgraph-server', { method: 'POST', body: JSON.stringify({ api_key: 'vnxt_your_key_here' }) // ← NEVER });
api_key JSON field) was a confirmed P3-01 vulnerability and has been eradicated from the API. Any client sending a key in the body will receive a 401 Unauthorized response.
Enter your work email and get an API key instantly — 1,000 calls/month, no credit card. Keys are prefixed vnxt_.
By generating a key you agree to our Terms of Service. No credit card required.
| Tier | Calls/Month | Calls/Min | Burst (10s) | Audit PDFs |
|---|---|---|---|---|
| FREE | 1,000 | 20 | 50 | 0 |
| PRO | Unlimited | 200 | 500 | Unlimited |
| ENTERPRISE | Unlimited | Custom | Custom | Unlimited |
Exceeding limits returns 429 with Retry-After. Limits enforced at Cloudflare edge — no origin latency penalty within burst.
The /api/mcp endpoint requires a signature field in every JSON-RPC payload. Server rejects unsigned calls with 403.
import { createHmac } from 'node:crypto'; const body = JSON.stringify(payload); const sig = createHmac('sha256', process.env.VNXT_WEBHOOK_SECRET) .update(body).digest('hex'); fetch('https://verditnxtgen.com/api/mcp', { method: 'POST', headers: { 'X-VerditNxtGen-Key': process.env.VNXT_API_KEY, 'X-VNG-Signature': sig }, body: JSON.stringify({ ...payload, signature: sig }) });
_kvRecordVerify uses constant-time comparison. Include a ts (Unix timestamp) field — payloads older than 60s are rejected.
Add the VerditNxtGen GitHub Action to your workflow. It reads your package.json or pyproject.toml, queries the API for each AI tool listed, and fails the PR if any tool scores below your configured threshold.
VNXT_API_KEY in GitHub Secrets — never in sourcename: VerditNxtGen Dependency Audit on: [pull_request] jobs: verdit-audit: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Audit AI dependencies uses: ShopFarnow/verdit-action@v1 with: api-key: ${{ secrets.VNXT_API_KEY }} min-score: 60 fail-on-owasp: true post-pr-comment: true # Key is injected via header internally — never in payload