Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

Quotas & Limits

Pinner enforces usage limits to ensure fair access for all users.

Storage Quotas

PlanStorageRetention
Free1 GB30 days
Pro100 GBIndefinite
EnterpriseCustomCustom

Rate Limits

EndpointFreePro
Uploads/min10100
Pins/min30300
Queries/min60600

Fair Use Policy

  • No bandwidth abuse
  • No automated scraping
  • Respect rate limits

Checking Your Pins

import { Pinner } from "@lumeweb/pinner"; const pinner = new Pinner({ jwt: "YOUR_API_TOKEN" }); const pins = await pinner.listPins(); console.log(`Total pins: ${pins.length}`); for (const pin of pins) { console.log(`${pin.cid} - ${pin.status}`); }