Tiiny Host API
  1. API
Tiiny Host API
  • Getting Started
  • API
    • Create Project
      POST
    • Update Project
      PUT
    • Delete Project
      DELETE
    • Fetch Profile
      GET
  1. API

Update Project

PUT
/v1/upload
Add or replace files in a project.

Request

Header Params

Body Params multipart/form-dataRequired

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://ext.tiiny.host/v1/upload' \
--header 'x-api-key: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx' \
--form 'files="/path/to/file.zip"' \
--form 'siteSettings="{ \"password\": \"he!!ow0rld\", \"passwordProtected\": true }"' \
--form 'domain="my-project.tiiny.site"'
Response Response Example
{
    "success": true,
    "data": {
        "link": "something.tiiny.site",
        "status": "active",
        "profile": {
            "quotaUsed": 5,
            "quotaLimit": 1024
        }
    }
}
Modified at 2025-10-29 15:37:36
Previous
Create Project
Next
Delete Project
Built with