FixWeb

// docs / quickstart

Snelstart

Registreer je, voer je eerste scan uit, lees het rapport. De Free-laag is echt — geen creditcard nodig om te evalueren.

1. Maak een account aan

Ga naar /sign-in en kies Google, GitHub of e-mail met magic link. Nieuwe accounts starten op het Free-plan, met 3 scans per maand en alleen passieve scans. Je kunt later upgraden via Account → Facturatie.

2. Voer een scan uit

01

Kies een doel

Klik in het dashboard op New scan, plak een URL en verstuur. FixWeb normaliseert kale hostnamen (example.comhttps://example.com) en weigert interne adressen (RFC 1918, link-local, AWS metadata).

02

Wacht ~20 seconden

A passive scan runs in three phases: crawl (Chromium renders the page to discover links, metadata, media, scripts, and forms), quality checks (crawlability, search presentation, content/schema, media, performance, accessibility, forms, mobile/i18n, and runtime signals), and aggregate (deduplicate + severity ranking). Live progress streams via the dashboard; you don't need to refresh.

03

Lees het rapport

The report opens automatically when complete. Free plan users see only the highest-severity finding in full (title, description, evidence, remediation); other findings are stripped to severity-only stubs server-side. The Hobby plan and higher (Pro, Unlimited) unlock every finding plus the AI prompt copy button on each one.

3. Run an owner-depth scan (optional, Hobby plan and higher)

Owner-depth scans extend the same website-quality checks into verified domains and can include private journeys when you provide a short-lived test-account header. Add and verify a domain at Dashboard -> Domains (DNS TXT or HTTP file), then start an Owner-depth scan from New scan. You'll attest to the scan; we audit-log it server-side.

4. Gebruik de REST API

Maak een bearer-token aan via Account → API tokens. De plaintext wordt één keer getoond; plak die in je CI / Cursor / curl.

curl
# Start a passive scan
curl -X POST https://fixweb.app/api/v1/scans \
  -H "Authorization: Bearer fxw_..." \
  -H "content-type: application/json" \
  -d '{"target":"https://staging.example.com"}'

Volledige referentie op /docs/api.

5. Verbind FixWeb met je AI-agent (MCP)

FixWeb levert een MCP-server op /api/mcp met zeven tools, twee resources en een slash command /fixweb-fix voor sjabloonmatige remediatieprompts. Verbind hem met Claude Desktop / Cursor / Continue — zie /docs/mcp.

Waar je hierna heen gaat

  • Scan types — passive vs owner-depth vs GitHub repo scans, the attestation flow.
  • Domains — verify a domain, schedule re-scans, enable live monitoring.
  • Quota's en limieten — limieten per laag, API-rate-limieten en bewaarbeleid.

Vastgelopen?

Stuur een e-mail naar support@fixweb.app met de scan-id en wat je verwachtte versus wat je zag. Het Hobby-plan krijgt standaard support, het Pro-plan krijgt prioritaire support, en het Unlimited-plan bevat dedicated support.

Snelstart — Docs · FixWeb