Integrate with Filester using our REST API. Upload files, manage folders, and access your content programmatically.
https://u1.filester.me
All API requests require an API key passed as a Bearer token in the Authorization header.
Get your API key from your Account Settings page. Guest uploads (no authentication) are also supported for the upload endpoint.
Upload a file. Supports guest uploads (no auth required) or authenticated uploads with an API key.
Content-Type |
multipart/form-data | required |
Authorization |
Bearer YOUR_API_KEY | optional |
X-Folder-ID |
Folder identifier to upload into | optional |
file |
The file to upload | required |
Check the status of an uploaded file.
List your uploaded files with pagination and search.
page |
Page number (default: 1) | optional |
per_page |
Items per page, 1-100 (default: 20) | optional |
folder |
Folder identifier, or "root" for root files only | optional |
search |
Search by filename | optional |
Get details of a specific file. The id can be a slug, UUID, or numeric ID.
Delete one or more files.
List all your folders.
Create a new folder.
name |
Folder name (max 100 characters) | required |
public |
1 for public, 0 for private (default: 1) | optional |
password |
Password to protect the folder | optional |
List all files in a specific folder.
Delete one or more folders and all files within them.
Get your account information and usage statistics.
Check API health status. No authentication required.
All errors follow a consistent format. HTTP status codes are used appropriately.
| Code | Meaning |
|---|---|
200 |
Success |
201 |
Created (folder creation) |
400 |
Bad request - missing or invalid parameters |
401 |
Unauthorized - invalid or missing API key |
403 |
Forbidden - insufficient permissions |
404 |
Not found - resource doesn't exist |
429 |
Rate limited - too many requests |
500 |
Internal server error |
| Resource | Limit |
|---|---|
| File size (API upload) | 10 GB |
| File size (Web upload) | 10 GB |
| Storage per account | 10 GB |
| API requests | 1,000 / hour |
| Folder name length | 100 characters |
| Folder nesting depth | Unlimited nested folders |
| File inactivity | Deleted after 45 days without views or downloads |