deprecated
API update: Direct upload media from device
13 days ago by FastPix
We’ve officially deprecated the old direct upload endpoint due to performance limitations and introduced a new, enhanced version with no file size restrictions and faster uploads.
🛑 Deprecated Endpoint (as of July 2025)
POST https://api.fastpix.io/v1/on-demand/uploads
- Previously used for uploading video files directly from client devices
- Had a maximum file size limit of 500MB
- Uploads for larger files would fail or require chunked upload with resumable upload SDK.
- Slower in terms of upload initiation and processing feedback
✅ New Endpoint (Now Available)
POST https://api.fastpix.io/v1/on-demand/upload
- This endpoint replaces the deprecated
/v1/on-demand/uploads
- No file size limitations - suitable for uploading 4K, long-form, and high-bitrate media
- Significantly improved upload performance
If you're currently using the old
/v1/n-demand/uploads
endpoint:
- You only need to change your upload logic to point to
/v1/on-demand/upload
- The rest of your workflow - including post-upload processing and media access remains the same
See the updated API Reference for full details.