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

Doing the same from the command line

Upload a file and read it back
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>

Storage endpoint reference All free public APIs