File uploader
Drop a file, paste some text, or paste a screenshot straight from your clipboard. You get back a URL anyone can open. No API key, no account, no sign-up - and everything is deleted after 24 hours.
Drop files here
or click to choose files, or paste an image with Ctrl+V / Cmd+V
or paste text
How it works
This page is a thin front end for the temporary storage endpoint. Your browser posts the file directly to https://aisenseapi.com/services/v1/storage and the response contains a storage_id. The shareable URL is that endpoint plus the id.
Nothing passes through this website: the upload goes from your browser straight to the API, so the only copy is the one the API stores. That copy is readable by anyone holding the URL, and it is removed 24 hours after it was written.
What to keep in mind
- Anything you upload is public. The URL is unguessable, but it is not a password. Do not upload secrets, credentials or personal data.
- It expires after 24 hours. This is for handing something over inside a task, not for hosting.
- The rate limit is 5000 requests per IP per 24 hours, which no ordinary use of this page will reach.
Doing the same from the command line
curl -s -X POST https://aisenseapi.com/services/v1/storage \
-F "file=@report.pdf"
# -> {"storage_id":"...","read_url":"...","expire_timestamp":...}
curl -s https://aisenseapi.com/services/v1/storage/<storage_id>