Upload files to Vidgo API using multipart/form-data format for direct file uploads
multipart/form-data formatfile field must contain binary file data
upload_path or uploadPath - both are accepted
file_name or fileName - both are accepted
temp/ prefix in the storage path
upload_path: "photos", the actual path will be temp/photos
file_name is not provided, the system generates a unique name in the format: {timestamp}_{random}_{extension}
20251229130857_a8B9cD2e.png
429 Too Many Requests error
All API endpoints require Bearer Token authentication
Get your API Key:
Visit the API Key Management Page to get your API Key
Add it to the request header:
Authorization: Bearer VIDGO_API_KEYFile binary data to upload.
Supported formats: JPEG, PNG, GIF, WebP
Maximum: 1 image per request
Note: The system automatically identifies and categorizes file types.
Custom storage directory path.
Supports both naming conventions:
upload_pathuploadPathIf not specified, the system will auto-categorize the file.
Note: All files are stored with a temp/ prefix regardless of the specified path.
"photos"
Custom filename for the uploaded file.
Supports both naming conventions:
file_namefileNameIf not specified, the system will generate a unique filename in the format: {timestamp}_{random}_{extension}
Example auto-generated name: 20251229130857_a8B9cD2e.png
"photo.png"