Cloudreve API Docs
  1. WebDAV
Cloudreve API Docs
  • Site
    • Ping
      GET
    • Get CAPTCHA
      GET
    • Get site settings
      GET
    • Report abuse
      POST
  • Session
    • Token
      • Password sign-in
      • Finish sign-in with 2FA
      • Refresh Token
      • Sign out
    • OpenID
      • Prepare OpenID sign-in
      • Finish OpenID sign-in
      • Unlink OpenID
    • Passkey
      • Prepare Passkey sign-in
      • Finish Passkey sign-in
    • Prepare login
      GET
  • User
    • Passkey
      • Prepare passkey registration
      • Finish passkey registration
      • Delete passkey
    • Setting
      • List available storage policies
      • List available nodes
      • Get preferences
      • Prepare enabling 2FA
      • Update preference setting
      • Update profile pricture
    • Sign up
      POST
    • Send reset password email
      POST
    • Reset password via temp link
      PATCH
    • Get profile picture
      GET
    • Get user
      GET
    • List user's share links
      GET
    • Get storage capacity
      GET
    • Search user
      GET
    • List credit changes
      GET
    • List payments
      GET
  • Callback
    • Complete OBS upload
      POST
    • Complete OneDrive upload
      POST
    • Complete COS upload
      GET
    • Complete S3 upload
      GET
  • Workflow
    • Remote Download
      • Create remote download
      • Select files to download
      • Cancel task
    • List tasks
    • Get task progress
    • Create archive
    • Extract archive
    • Relocate storage policy
    • Import external files
  • File
    • Permission
      • Set permission
      • Delete permission setting
    • Upload
      • Create upload session
      • Upload file chunk
      • Delete upload session
    • Pin
      • Pin to sidebar
      • Delete a pin
    • Version
      • Set file version
      • Delete file version
    • Direct Link
      • Create direct links
      • Delete direct link
    • List files
    • List file activities
    • Get file info
    • Get thumbnail URL
    • Update file content
    • Create viewer session
    • Create file
    • Rename file
    • Move or copy files
    • Create download URL
    • Restore from trash bin
    • Delete file
    • Force unlock
    • Patch metadata
    • Mount storage policy
    • Update view setting
  • Share
    • Create share link
    • Edit share link
    • Get share link info
    • List my share links
    • Delete share link
  • VAS
    • Payment
      • Create a payment
      • Get payment status
    • GiftCode
      • Check gift code
      • Redeem gift code
  • Group
    • List groups
  • WebDAV
    • List accounts
      GET
    • Create account
      PUT
    • Update account
      PATCH
    • Delete account
      DELETE
  1. WebDAV

List accounts

GET
/devices/dav
List all WebDAV accounts under authenticated user.

Request

Authorization
Add the parameter
Authorization
to Headers
,whose value is to concatenate the Token after the Bearer.
Example:
Authorization: Bearer ********************
Query Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/devices/dav?page_size=50'

Responses

🟢200Success
application/json
Body

Example
{
    "code": 0,
    "data": {
        "accounts": [
            {
                "id": "4ycW",
                "created_at": "2025-06-13T13:37:27+08:00",
                "name": "my files",
                "uri": "cloudreve://my",
                "password": "f6zxgh7j4yo3vuvtdpcxd6na89efvmpo",
                "options": ""
            },
            {
                "id": "WNuO",
                "created_at": "2023-12-04T18:51:42+08:00",
                "name": "test",
                "uri": "cloudreve://Y8bCn@share",
                "password": "ery99robfkr7oxhwqp6hbshpus782l5k",
                "options": "AA=="
            }
        ],
        "pagination": {
            "page": 0,
            "page_size": 50,
            "is_cursor": true
        }
    },
    "msg": ""
}
Modified at 2025-08-12 07:13:02
Previous
List groups
Next
Create account
Built with