About ArsyHost
Free image hosting powered by Cloudflare Edge and Telegram document storage.
API Documentation
Upload images as documents.
POST https://arsyhost.pages.dev/upload
// JavaScript
const form = new FormData();
form.append('file', file);
const res = await fetch(
'https://arsyhost.pages.dev/upload',
{ method:'POST', body:form }
);
const data = await res.json();
curl -X POST https://arsyhost.pages.dev/upload \
-F "file=@image.jpg"