FixWeb

// docs / quickstart

Démarrage rapide

Inscris-toi, lance ton premier scan, lis le rapport. L'offre Free est réelle : aucune carte bancaire n'est requise pour l'évaluer.

1. Créer un compte

Visite /sign-in et choisis Google, GitHub ou un e-mail avec lien magique. Les nouveaux comptes commencent sur le plan Free, qui inclut 3 scans par mois et uniquement des scans passifs. Tu peux passer à un plan supérieur plus tard depuis Compte → Facturation.

2. Lancer un scan

01

Choisis une cible

Depuis le tableau de bord, clique sur Nouveau scan, colle une URL, puis valide. FixWeb normalise les noms d'hôte nus (example.comhttps://example.com) et rejette les adresses internes (RFC 1918, link-local, métadonnées AWS).

02

Attends ~20 secondes

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

Lis le 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. Utiliser l'API REST

Crée un bearer token dans Compte → Tokens API. Le texte en clair n'est affiché qu'une seule fois ; colle-le dans ta 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"}'

Référence complète sur /docs/api.

5. Brancher FixWeb sur ton agent IA (MCP)

FixWeb fournit un serveur MCP sur /api/mcp avec sept outils, deux ressources et une commande slash /fixweb-fix pour les prompts de remédiation modèles. Branche-le sur Claude Desktop / Cursor / Continue ; consulte /docs/mcp.

Où aller ensuite

  • Scan types — passive vs owner-depth vs GitHub repo scans, the attestation flow.
  • Domains — verify a domain, schedule re-scans, enable live monitoring.
  • Quotas et limites : plafonds par offre, limites de débit API, politiques de rétention.

Bloqué ?

Écris à support@fixweb.app avec l'id du scan et ce que tu attendais face à ce que tu as vu. Le plan Hobby bénéficie du support standard, le plan Pro du support prioritaire, et le plan Unlimited inclut un support dédié.

Démarrage rapide — Docs · FixWeb