Skip to main content
POST
/
upload
Upload a file
curl --request POST \
  --url https://nulldrop.xyz/api/v2/upload \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form isPublic=true \
  --form file=@example-file
{
  "success": true,
  "data": {
    "id": "<string>",
    "filename": "<string>",
    "size": 123,
    "mimeType": "<string>",
    "downloadUrl": "<string>",
    "shareUrl": "<string>",
    "isPublic": true,
    "uploadedAt": "2023-11-07T05:31:56Z"
  },
  "_perf": 123
}

Authorizations

Authorization
string
header
required

API key authentication (format: nd_xxxxx)

Body

multipart/form-data
file
file
required

File to upload

isPublic
enum<string>
default:true

File visibility - true for public, false for private

Available options:
true,
false

Response

File uploaded successfully

success
boolean
data
object
_perf
integer

Request duration in milliseconds