Production Ready · Cloudflare Workers

Vulnerability Management
+ URL Shortener API

REST API ready to integrate. CVSS v3.1 scoring, compliance reports, and URL analytics — all in one place.

Free tier available. No credit card required.

Simple, Transparent Pricing

Start free. Upgrade when you need more.

Free
$0 / month
1,000 requests / month
  • URL Shortener
  • Custom short codes
  • Instant API key via /v1/register
  • HTTPS redirect
Enterprise
$99 / month
Unlimited requests + SLA
  • Everything in Pro
  • Executive PDF reports
  • Bulk vulnerability import
  • Risk scoring engine
  • 99.9% uptime SLA
  • Dedicated support channel

Get Your Free API Key

Instant activation. No credit card. Start making requests in seconds.

Quick Start

Authenticate with your X-API-Key header.

cURL Example — Shorten a URL
# Get your free key at /v1/register
curl -X POST https://vulnerafix-api.aalvarez351.workers.dev/v1/urls/shorten \
  -H "X-API-Key: vfx_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{"url": "https://example.com/very/long/url"}'

# Response
{
  "ok": true,
  "code": "aB3dEfG",
  "short_url": "https://vulnerafix-api.aalvarez351.workers.dev/s/aB3dEfG",
  "plan_info": { "plan": "free", "remaining": 999 }
}

cURL Example — Create Vulnerability [pro+]
curl -X POST https://vulnerafix-api.aalvarez351.workers.dev/v1/vuln \
  -H "X-API-Key: vfx_your_pro_key" \
  -H "Content-Type: application/json" \
  -d '{"title":"SQL Injection in login","cvss_vector":"AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H"}'

# Response — CVSS auto-calculated
{ "ok": true, "id": 42, "severity": "CRITICAL", "cvss_score": 9.8 }