FixVibe

// docs / quotas & limits

Quotas ও limits

নিচের প্রতিটি quota এবং rate-limit value build time-এ entitlements module থেকে নেওয়া, তাই server বাস্তবে যা enforce করে এই page তা থেকে drift করতে পারে না।

প্রতি-tier entitlements

ফ্রিশখপ্রোUnlimited
স্ক্যান / মাস350200Unlimited plan¹
Projects (verified domains)11520
API tokens01520
Webhook endpoints01520
Active probesনাহ্যাঁহ্যাঁহ্যাঁ
GitHub repo scansনানাহ্যাঁহ্যাঁ
Scheduled re-scansনানা≥3h cadence≥6h cadence
Live threat detectionনানানাহ্যাঁ
Sharable reportsনানাহ্যাঁহ্যাঁ
Retention7 দিন30 দিন90 দিন365 দিন
Team seats1115
Supportstandardstandardprioritydedicated

¹ The Unlimited plan's scan quota is subject to fair use — see Terms. ² The project cap defaults to 20 active-monitoring domains at ≥6h cadence. Contact support@fixvibe.app to raise it in exchange for a longer scheduled cadence.

API rate limits

প্রতিটি /api/v1/* এবং /api/mcp request bearer token-এর hash-এ keyed এবং দুটি windows-এর মধ্য দিয়ে যায়:

  • Burst: প্রতি second 10 requests।
  • Steady: প্রতি minute 60 requests।
  • Per signed-in user: 30 scan submissions per 10 minutes — a soft cap above the per-plan monthly quota that absorbs bursts without exhausting the daily budget.

429 হলে response-এ থাকে:

http
HTTP/1.1 429 Too Many Requests
content-type: application/json
retry-after: 47
x-ratelimit-limit: 60
x-ratelimit-remaining: 0
x-ratelimit-reset: 1715116200

{
  "error": "rate_limited",
  "message": "Token rate limit exceeded — steady (60/min). Retry in 47s.",
  "retry_after_seconds": 47
}

Message-এ কোন window trip করেছে সেটির নাম থাকে (burst (10/s) বনাম steady (60/min)) যাতে client backoff adapt করতে পারে।

Free plan scan rate limit (per IP/24)

On top of the per-org 3-scans-per-month cap, Free plan users face an additional per-IP/24 rate limit: 3 scans per rolling 24 hours per IP /24 block. The same limiter covers anonymous instant scans, which prevents farming Free quota through throwaway accounts on one IP. Requests exceeding the limit return HTTP 429 Too Many Requests with a Retry-After header.

Signup throttle (per IP/24)

automated Free plan account creation ঠেকাতে প্রতি IP/24-এ প্রতি 24 ঘণ্টায় 5টি successful sign-up। Rate-limited callbacks /sign-in?error=rate_limited-এ redirect করে।

Retention

Scans + findings ওপরের table অনুযায়ী auto-purge হয়। Anonymous one-shot scans creation-এর 24h পরে expire হয়। Audit logs 18 months retain হয়। Monitor snapshots last 7 days plus latest baseline per (domain, signal)-এ prune হয়। Dismissed alerts 90 days পরে purge হয়। সব retention daily /api/cron/retention-cleanup দিয়ে enforced।

Quotas ও limits — Docs · FixVibe