Api reference
Subscription & Usage
Check your plan limits and current usage
Get Usage
GET /subscription/usageScope: bookmarks:read
Returns your current plan, bookmark count, and storage usage.
{
"data": {
"bookmarkCount": 1234,
"trashedCount": 12,
"bookmarkLimit": 50000,
"plan": "pro",
"storage": {
"usedBytes": 52428800,
"limitBytes": 524288000,
"maxFileBytes": 10485760
}
}
}| Field | Type | Description |
|---|---|---|
bookmarkCount | number | Current number of active bookmarks |
trashedCount | number | Current number of trashed bookmarks |
bookmarkLimit | number | Maximum bookmarks allowed on your plan |
plan | string | Current plan: free, pro, or business |
storage | object | Storage usage metadata |
storage.usedBytes | number | Storage used in bytes |
storage.limitBytes | number | Storage limit in bytes |
storage.maxFileBytes | number | Per-file upload limit in bytes |
Plan Limits
| Plan | Bookmarks | API Access |
|---|---|---|
| Pro | 50,000 | Yes |
| Business | 50,000 | Yes |
Free plan users cannot create API tokens or access the API.
When you reach your bookmark limit, create/import operations return a BOOKMARK_LIMIT_REACHED error (422).