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.
Start free. Upgrade when you need more.
Instant activation. No credit card. Start making requests in seconds.
Authenticate with your X-API-Key header.
# 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 -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 }