Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.usehasp.com/llms.txt

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

Records & Storage

LimitStandardEnterprise
Max records per app100,0001,000,000
Max record size5 MB25 MB
Max attachment storage250 MB5 GB
Max single attachment10 MB50 MB

API Rate Limits

TierRequests per minute
Standard60
Enterprise300
Rate limits are per-app. The 429 Rate Limited response includes a Retry-After header. The SDK retries automatically on 429; if all retries are exhausted it throws ErrorCode.RateLimited.

Pagination

LimitValue
Default page size25
Max page size100

Bulk Operations

OperationMax per request
bulkCreateRecords100 records
bulkUpdateRecords100 records
bulkDeleteRecords100 IDs

Limits in Code

The current limits for the authenticated user’s plan are returned by sdk.getBootstrap():
const bootstrap = await sdk.getBootstrap();
const { maxPageSize, maxRecordCount, rateLimitPerMinute } = bootstrap.limits;