Download videos from popular platforms. Simply paste the URL and get high-quality videos in seconds.
Supported platforms: Poopstream.cloud, Mp4.bio, Videy.host, and more
Processing your video, please wait...
Copy the link from your browser's address bar or the share button.
Paste the URL in the input field above and click "Fetch Video".
Choose your preferred quality and click the download button.
Check if the API is running.
curl -X GET https://your-worker.workers.dev/status
Get video information or folder contents.
Request Body:
{ "url": "https://poopstream.net/f/abc123", // Required "page": 1 // Optional, for folder links }
Example Usage:
# For single video: curl -X POST https://your-worker.workers.dev/download \ -H "Content-Type: application/json" \ -d '{"url": "https://poopstream.net/e/abc123"}' # For folder with pagination: curl -X POST https://your-worker.workers.dev/download \ -H "Content-Type: application/json" \ -d '{"url": "https://poopstream.net/f/abc123", "page": 1}'
Single Video Response:
{ "success": true, "message": "Video data retrieved", "data": { "id": "abc123", "name": "video-filename.mp4", "url": "https://download-url.com/video.mp4", "thumbnail": "https://thumbnail-url.com/thumb.jpg", "size": 123456789 } }
Folder Response:
{ "success": true, "message": "Retrieved page 1", "data": [ { "id": "video1", "name": "video1.mp4", "url": "https://download-url.com/video1.mp4", "thumbnail": "https://thumbnail-url.com/thumb1.jpg", "size": 123456789 } // ... more videos ], "pagination": { "currentPage": 1, "totalPages": 5 } }