๐ŸคšManage

Here you can manage any file or image already uploaded to the CDN;

/manage/list

Here you can list all files uploaded to the CDN;

QUERIES: (optional) ?page=<PAGENUMBER> ?limit=<LIMIT PER PAGE> PERMISSIONS: * NONE

GET https://cdn.nextfur.net/v1/manage/list?page=<PAGENUMBER>&limit=<LIMITNUMBER>

Expected output:

{
  "success": true,
  "data": {
    "files": [
      {
        "originalName": "429321829158.webp",
        "fileID": "081083974133",
        "extension": ".webp",
        "mimetype": "image/webp",
        "size": 30346,
        "uploadedAt": "2025-10-13T02:58:23.133Z",
        "uploader": "127.0.0.1",
        "urls": {
          "view": "http://cdn.nextfur.net/v1/file/081083974133.webp",
          "download": "http://cdn.nextfur.net/v1/download/081083974133.webp"
         }
       }
    ]
  }
}

/manage/info/:fileID

PERMISSIONS: * NONE FILE ID: * <IMAGEID>

Expected output:

/manage/delete/:fileID

PERMISSIONS: * IMAGE OWNER'S TOKEN FILE ID: * <IMAGEID>

Expected output:

Last updated