Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.snipp.gg/llms.txt

Use this file to discover all available pages before exploring further.

Plan Tiers

Snipp offers three tiers to suit different needs. All plans include full API access.
FreePlusEnterprise
PriceFree$4.99/moContact us
Max File Size50 MBNo per-file limitNo per-file limit
Weekly Usage Limit2 GB20 GB50 GB
Upload Rate8 uploads/sec8 uploads/sec8 uploads/sec
API AccessYesYesYes
Plus BadgeNoYesYes
Priority SupportNoYesYes

Weekly Usage Limit

Each plan has a rolling 7-day upload quota. The window starts on your first upload after each reset and slides forward as you continue to use Snipp. Inactivity does not stack quota, but it also does not penalize you. The window simply re-anchors on your next upload. Failed uploads do not count against the limit. Only successfully stored files consume bytes. Deleting a file does not restore weekly quota. The limit measures upload throughput per window, not stored bytes, so any successful upload counts for the full window even if the file is later removed.

Checking Your Plan

You can view your current plan and weekly usage in three places:
  • Website: the Settings page shows your plan, max file size, weekly usage bar, and reset time.
  • Discord bot: run /usage for the same view inside Discord. See Discord Bot.
  • API: call GET /users/@me.

Checking Your Plan via the API

Call GET /users/@me to see your current plan status and weekly storage usage. The response includes:
{
  "user": {
    "plus": true,
    "enterprise": false,
    "uploads": 42,
    "limits": {
      "plan": "plus",
      "maxFileSize": null,
      "usage": {
        "used": 1073741824,
        "limit": 21474836480,
        "usedPercent": 5,
        "windowStart": "2026-05-01T00:00:00.000Z",
        "windowEnd": "2026-05-08T00:00:00.000Z",
        "resetsInSeconds": 172800
      }
    }
  }
}
FieldDescription
plustrue if you have an active Plus subscription
enterprisetrue if you have an Enterprise plan
uploadsTotal number of files you have uploaded
limits.planActive plan (free, plus, or enterprise)
limits.maxFileSizeMaximum size per file in bytes. null on Plus and Enterprise (no per-file limit; only weekly quota applies)
limits.usage.usedBytes uploaded in the current window
limits.usage.limitTotal bytes allowed per window
limits.usage.usedPercentPercentage of the weekly cap consumed, rounded to the nearest integer (0–100+)
limits.usage.windowStartWhen the current window started, or null if there is no active window
limits.usage.windowEndWhen the current window resets, or null if there is no active window
limits.usage.resetsInSecondsSeconds until the current window resets, or null if there is no active window

Upgrading

You can upgrade to Plus anytime from the pricing page or your account settings. Your new limits take effect immediately. For Enterprise plans, reach out to support@snipp.gg.

What Happens When You Downgrade

  • Your existing uploads remain accessible regardless of plan changes.
  • Files that exceed your new plan’s size limit cannot be re-uploaded if deleted.
  • Plus features such as the Plus badge are removed at the end of your billing period.