Convert Google Drive file & folder links into direct GDFlix downloadable links.
Version 1.0https://gdflix.yuxtor.workers.dev/
Every request requires a valid API key.
?key=YOUR_API_KEY
Contact the API owner to get your personal API key.
GET /
| Parameter | Required | Description |
|---|---|---|
| url | Yes | Google Drive File or Folder URL |
| key | Yes | API Authentication Key |
| debug | No | Returns raw GDFlix response |
https://gdflix.yuxtor.workers.dev/?url=https://drive.google.com/file/d/FILE_ID/view&key=YOUR_API_KEY
{
"name": "Example.mp4",
"size": "1.2 GB",
"link": "https://gdflix.xxx/file/abcd1234"
}
https://gdflix.yuxtor.workers.dev/?url=https://drive.google.com/drive/folders/FOLDER_ID&key=YOUR_API_KEY
{
"type": "folder",
"folder_id": "FOLDER_ID",
"total_files": 2,
"files": [
{
"name": "Movie1.mkv",
"size": "2.1 GB",
"link": "https://gdflix.xxx/file/abc"
},
{
"name": "Movie2.mkv",
"size": "1.8 GB",
"link": "https://gdflix.xxx/file/def"
}
]
}
Add &debug to return raw GDFlix response.
https://gdflix.yuxtor.workers.dev/?url=DRIVE_URL&key=YOUR_API_KEY&debug
{
"error": true,
"message": "Unauthorized. Please provide a valid '&key=' parameter."
}
{
"error": true,
"message": "Please provide a valid Google Drive file or folder URL."
}
{
"error": true,
"message": "Internal Server Error"
}
https://drive.google.com/file/d/FILE_ID/view
https://drive.google.com/drive/folders/FOLDER_ID
curl "https://gdflix.yuxtor.workers.dev/?url=https://drive.google.com/file/d/FILE_ID/view&key=YOUR_API_KEY"
curl "https://gdflix.yuxtor.workers.dev/?url=https://drive.google.com/drive/folders/FOLDER_ID&key=YOUR_API_KEY"
https://gdflix.yuxtor.workers.dev/help