FixVibe

// docs / rest api

REST API

Bearer-authenticated JSON API for scan automation, scan status, and findings. Passive scans are available through REST; active scans are available for paid plans only after the domain is verified and explicitly authorized in the dashboard.

Аутентификация

Каждый запрос должен нести bearer token в header Authorization. Tokens выпускаются в Account → API tokens; plaintext показывается тебе ровно один раз при создании. Отзыв token возвращает 401 на следующем вызове.

bash
curl -H "Authorization: Bearer fxv_..." \
  https://fixvibe.app/api/v1/scans

Формат token: fxv_ плюс 43 символа base64url. В покое хранится как SHA-256 hash; plaintext никогда не сохраняется на сервере.

Ограничения скорости

Два окна на каждый authenticated request: burst 10 req/sec и steady 60 req/min, оба keyed on bearer hash. Quota enforcement (monthly scan caps) накладывается сверху — см. Квоты и лимиты.

Пагинация

List endpoints (/api/v1/scans, /api/v1/findings) используют cursor-based pagination по (created_at, id) в descending order. Передай ?cursor=<next_cursor>, чтобы получить следующую страницу. Cursor остается корректным при concurrent writes (без OFFSET skew).

Формы ошибок

Каждая ошибка — JSON object как минимум с key error.

jsonc
{ "error": "invalid_token" }                              // 401
{ "error": "forbidden" }                                  // 403
{ "error": "not_found" }                                  // 404
{ "error": "quota_exceeded", "quota": {...} }             // 429
{ "error": "rate_limited", "retry_after_seconds": 47 }    // 429
{ "error": "invalid_input", "issues": [...] }             // 400

Эндпоинты

Запустить scan

POST/api/v1/scans

Enqueues a passive scan by default. For verified domains with active authorization, paid plans can request active mode. Returns immediately with a queued scan id; poll GET /api/v1/scans/[scanId] until status === "completed".

curl -X POST https://fixvibe.app/api/v1/scans \
  -H "Authorization: Bearer fxv_..." \
  -H "content-type: application/json" \
  -d '{"target":"https://staging.example.com"}'

// ответ 200

{
  "id": "8f1c4e2a-8c3a-4b6f-9c0d-9b1e8f3c2a4d",
  "status": "queued",
  "target": "https://staging.example.com",
  "mode": "passive"
}

Список твоих scans

GET/api/v1/scans

Возвращает scans для org, связанной с вызывающим token, newest first. Пагинация через ?cursor=. Default limit 50, max 100.

curl -H "Authorization: Bearer fxv_..." \
  "https://fixvibe.app/api/v1/scans?limit=25"

// ответ 200

{
  "scans": [
    {
      "id": "8f1c4e2a-...",
      "target_url": "https://staging.example.com",
      "target_hostname": "staging.example.com",
      "mode": "passive",
      "status": "completed",
      "started_at": "2026-05-07T14:00:00Z",
      "completed_at": "2026-05-07T14:00:23Z",
      "findings_count": { "critical": 1, "high": 3, "medium": 7, "low": 2, "info": 4 },
      "triggered_by": "api",
      "created_at": "2026-05-07T14:00:00Z"
    }
  ],
  "next_cursor": "2026-05-07T14:00:00Z:8f1c4e2a-..."
}

Получить scan

GET/api/v1/scans/{scanId}

По умолчанию возвращает scan envelope + severity summary по категориям. Передай ?include_findings=true, чтобы получить полный отчет (для шумных scans он большой — лучше используй findings endpoint с filters).

curl -H "Authorization: Bearer fxv_..." \
  https://fixvibe.app/api/v1/scans/8f1c4e2a-8c3a-4b6f-9c0d-9b1e8f3c2a4d

Список findings

GET/api/v1/findings

Фильтруемый список findings по всем scans в org вызывающего. Filters: severity=critical,high, check_id=secrets.patterns, since=2026-04-01T00:00:00Z. Cursor-paginated.

curl -H "Authorization: Bearer fxv_..." \
  "https://fixvibe.app/api/v1/findings?severity=critical,high&limit=50"

// ответ 200

{
  "findings": [
    {
      "id": "...",
      "scan_id": "...",
      "check_id": "secrets.js-bundle-sweep",
      "severity": "critical",
      "title": "Supabase service role key exposed in JS bundle",
      "description": "...",
      "evidence": { ... },
      "remediation": "...",
      "cwe_id": "CWE-798",
      "created_at": "2026-05-07T14:00:23Z"
    }
  ],
  "next_cursor": null
}

Спецификация OpenAPI

Машиночитаемая спецификация на /docs/api/openapi (text/yaml). Передай ее в любимый codegen (openapi-typescript, openapi-python-client или любой toolchain OpenAPI 3.1) для typed clients.

REST API — Docs · FixVibe