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

Create Project

POST
/v1/upload
Creates a new project from a file.

Request

Header Params

Body Params multipart/form-dataRequired

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '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.co"'
Response Response Example
{
    "success": true,
    "data": {
        "link": "something.tiiny.site",
        "status": "active",
        "profile": {
            "quotaUsed": 5,
            "quotaLimit": 1024
        }
    }
}
Modified at 2025-10-29 15:37:59
Previous
Getting Started
Next
Update Project
Built with