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

Upload Limits

Retrieve the maximum allowed upload size for your account.

Endpoint

GET https://account.pinner.xyz/api/upload-limit

Request Headers

HeaderValueDescription
AuthorizationBearer TOKENYour API token

Example

curl "https://account.pinner.xyz/api/upload-limit" \
  -H "Authorization: Bearer YOUR_API_TOKEN"

Response

{
  "limit": 104857600
}

The limit value is in bytes. In this example, 104857600 bytes = 100MB.

Account Limits

Limit TypeDescription
POST uploadMaximum file size for simple uploads (≤100MB)
TUS uploadNo hard limit, use resumable uploads for large files
Rate limitsApply per API endpoint

See Also