API Reference/api/user/api/user/paged

/api/user/paged

Info

GET
Get paged files

Query

Field NameTypeDescription
favoriteboolean?Only get favorite files
filterstring?Filter by file type, defaults to all, but the other accepted value is media which checks for video/audio/image/*
pagenumberThe page to get, required if no type
countboolean?If count is provided, this will retrieve the number of pages needed

200
Ok (JSON)

Returns a array of files

[
...,
{
"createdAt": "2022-12-01T17:41:48.887Z",
"expiresAt": null,
"file": "jO2DMR.png",
"mimetype": "image/png",
"id": 529,
"views": 0,
"maxViews": null,
"url": "/u/jO2DMR.png"
},
{
"createdAt": "2022-12-01T17:41:19.582Z",
"expiresAt": "2022-12-02T17:41:19.578Z",
"file": "w48LRo.png",
"mimetype": "image/png",
"id": 528,
"views": 0,
"maxViews": null,
"url": "/u/w48LRo.png"
},
{
"createdAt": "2022-11-28T04:44:14.703Z",
"expiresAt": null,
"file": "2RCTta.txt",
"mimetype": "text/plain",
"id": 520,
"views": 0,
"maxViews": null,
"url": "/u/2RCTta.txt"
},
{
"createdAt": "2022-11-28T04:42:34.821Z",
"expiresAt": null,
"file": "17qFqL.zip",
"mimetype": "application/zip",
"id": 519,
"views": 1,
"maxViews": null,
"url": "/u/17qFqL.zip"
},
...
]

or when count=true

{
"count": 2
}

400
Bad Request (JSON)

  • no page - No page was provided
  • page is not a number - The page provided is not a number
Last updated: 8/4/2023
Edit this page on GitHub