GDFlix API Documentation

Convert Google Drive file & folder links into direct GDFlix downloadable links.

Version 1.0

Base URL

https://gdflix.yuxtor.workers.dev/

Authentication

Every request requires a valid API key.

?key=YOUR_API_KEY

Contact the API owner to get your personal API key.

Endpoint

GET /
Parameter Required Description
url Yes Google Drive File or Folder URL
key Yes API Authentication Key
debug No Returns raw GDFlix response

Single File Example

Request

https://gdflix.yuxtor.workers.dev/?url=https://drive.google.com/file/d/FILE_ID/view&key=YOUR_API_KEY
      

Response

{
  "name": "Example.mp4",
  "size": "1.2 GB",
  "link": "https://gdflix.xxx/file/abcd1234"
}
      

Folder Example

Request

https://gdflix.yuxtor.workers.dev/?url=https://drive.google.com/drive/folders/FOLDER_ID&key=YOUR_API_KEY
      

Response

{
  "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"
    }
  ]
}
      

Debug Mode

Add &debug to return raw GDFlix response.

https://gdflix.yuxtor.workers.dev/?url=DRIVE_URL&key=YOUR_API_KEY&debug
      

Error Responses

401 Unauthorized

{
  "error": true,
  "message": "Unauthorized. Please provide a valid '&key=' parameter."
}
      

400 Bad Request

{
  "error": true,
  "message": "Please provide a valid Google Drive file or folder URL."
}
      

500 Internal Server Error

{
  "error": true,
  "message": "Internal Server Error"
}
      

Supported Google Drive Formats

File

https://drive.google.com/file/d/FILE_ID/view
      

Folder

https://drive.google.com/drive/folders/FOLDER_ID
      

cURL Examples

Single File

curl "https://gdflix.yuxtor.workers.dev/?url=https://drive.google.com/file/d/FILE_ID/view&key=YOUR_API_KEY"
      

Folder

curl "https://gdflix.yuxtor.workers.dev/?url=https://drive.google.com/drive/folders/FOLDER_ID&key=YOUR_API_KEY"
      

Features

Help URL

https://gdflix.yuxtor.workers.dev/help