Tools to interact with vadapav.mov programmatically.
| Method | Endpoint | Description | Returns |
|---|---|---|---|
GET |
/api/d |
List root directory | JSON |
GET |
/api/d/{idOrPath} |
List folder by UUID or name path (e.g. Movies) |
JSON |
GET |
/api/s/{query} |
Search — min 4 chars. Alt: /api/s/?q={query} |
JSON |
GET |
/api/m/{id} |
File or folder metadata by UUID | JSON |
GET |
/api/l/{id} |
All download links for a folder | text/plain |
GET |
/f/{id} |
Download file. Supports Range header for resumable downloads. Alt: /dl/{id} |
file stream |
curl https://vadapav.mov/api/dcurl "https://vadapav.mov/api/s/severance"curl "https://vadapav.mov/api/d/Movies"curl -L "https://vadapav.mov/f/{fileId}" -o filename.mkvcurl -L -C - "https://vadapav.mov/f/{fileId}" -o filename.mkv