Loading Docuhost
Pulling the latest product state, pricing, and workspace context.
Pulling the latest product state, pricing, and workspace context.
This is the one behind-the-scenes feature many small teams still need: let another app upload a file for you and return a DocuHost link. Website building, GitHub connection, AI drafts, and website updates stay inside the dashboard.
Upload in, hosted link out.
Give this snippet to the person or tool handling your automation. DocuHost stores the file and returns a link you can share.
const response = await fetch('https://docuhost.cloud/api/v1/upload', {
method: 'POST',
headers: {
'x-api-key': 'YOUR_API_KEY',
},
body: formDataWithYourFile,
}).then((res) => res.json());
console.log(response.fileUrl);POST /api/v1/upload
Send one file from another tool and get back a hosted file link.
File automations only
The public automation surface is intentionally small. It is for file uploads only, not website setup or website status.
Dashboard for websites
Website creation, GitHub connection, AI drafts, and domain setup live inside the signed-in dashboard.
Simple sharing first
Automated uploads make file sharing easy from your own tools without opening up the whole platform.
Helpful, not sprawling
DocuHost keeps the product smaller and easier to explain by avoiding a huge public automation surface.