Upload File Stream
Upload files to Vidgo API using multipart/form-data format for direct file uploads
Documentation Index
Fetch the complete documentation index at: https://docs.vidgo.ai/llms.txt
Use this file to discover all available pages before exploring further.
Usage Guide
- This endpoint enables direct file uploads using the standard
multipart/form-dataformat - Supports uploading files directly from local storage with automatic file type identification
- Best suited for local file uploads from desktop applications, mobile apps, or web forms
- Files are immediately accessible via the returned URL and remain available for 72 hours
Parameter Details
-
File Upload Requirement:
-
The
filefield must contain binary file data - Supported file formats: JPEG, PNG, GIF, WebP only
- Maximum upload limit: 1 image per request
- The system automatically identifies the file type from the binary data
-
The
-
Parameter Naming Convention:
- This endpoint supports both snake_case and camelCase naming conventions
-
upload_pathoruploadPath- both are accepted -
file_nameorfileName- both are accepted - Use whichever convention matches your application’s coding style
-
Storage Configuration:
-
All files are automatically stored with a
temp/prefix in the storage path -
If you specify
upload_path: "photos", the actual path will betemp/photos - Files will expire and be automatically deleted 72 hours after upload
-
All files are automatically stored with a
-
File Naming:
-
If
file_nameis not provided, the system generates a unique name in the format:{timestamp}_{random}_{extension} -
Example auto-generated name:
20251229130857_a8B9cD2e.png
-
If
Developer Notes
-
When to use file stream upload:
- Direct file uploads from user’s local storage
- Form-based file uploads from web applications
- Mobile app file uploads
- Server-to-server file transfers
- This is the most efficient upload method for files already stored on disk
- The multipart/form-data format is standard across all programming languages and HTTP clients
- For persistent storage needs, download and save the file locally before the 72-hour expiration
Rate Limits and Quotas
- Rate Limit: 5 requests per minute per API key
-
When the rate limit is exceeded, you will receive a
429 Too Many Requestserror - Implement exponential backoff retry logic for handling rate limit errors
Common Error Scenarios
- Missing File: No file was provided in the request body (422 error)
- Unsupported File Type: The uploaded file is not in a supported image format (JPEG, PNG, GIF, WebP)
- Empty File: The uploaded file has zero bytes or is corrupted
- Authentication Error: Missing or invalid API key in the Authorization header
Example Usage
cURL Example
Python Example
JavaScript Example (Node.js)
Authorizations
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_KEYBody
File 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:
- snake_case:
upload_path - camelCase:
uploadPath
If 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:
- snake_case:
file_name - camelCase:
fileName
If not specified, the system will generate a unique filename in the format: {timestamp}_{random}_{extension}
Example auto-generated name: 20251229130857_a8B9cD2e.png
"photo.png"