https://appwrite.io/v1/storage/filesGet a list of all the user files. You can use the query params to filter your results. On admin mode, this endpoint will return a list of all of the project's files. Learn more about different API modes.
Search term to filter your list results. Max length: 256 chars.
Results limit value. By default will return maximum 25 results. Maximum of 100 results allowed per request.
Results offset. The default value is 0. Use this param to manage pagination.
Order result by ASC or DESC order.
{
"success": true,
"data": {
"id": "abc123",
"created_at": "2025-01-01T00:00:00Z"
}
}{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "Invalid request parameters"
}
}1curl --request GET \2 --url 'https://appwrite.io/v1/storage/files' \3 --header 'accept: application/json' \4 --header 'content-type: application/json'1{2 "success": true,3 "data": {4 "id": "abc123",5 "created_at": "2025-01-01T00:00:00Z"6 }7}https://appwrite.io/v1/storage/filesGet a list of all the user files. You can use the query params to filter your results. On admin mode, this endpoint will return a list of all of the project's files. Learn more about different API modes.
Search term to filter your list results. Max length: 256 chars.
Results limit value. By default will return maximum 25 results. Maximum of 100 results allowed per request.
Results offset. The default value is 0. Use this param to manage pagination.
Order result by ASC or DESC order.
{
"success": true,
"data": {
"id": "abc123",
"created_at": "2025-01-01T00:00:00Z"
}
}{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "Invalid request parameters"
}
}1curl --request GET \2 --url 'https://appwrite.io/v1/storage/files' \3 --header 'accept: application/json' \4 --header 'content-type: application/json'1{2 "success": true,3 "data": {4 "id": "abc123",5 "created_at": "2025-01-01T00:00:00Z"6 }7}