curl --request GET \
--url https://cloud.comfy.org/api/userdata \
--header 'X-API-Key: <api-key>'[
{
"path": "<string>",
"size": 123,
"modified": 123
}
]Returns a list of user data files in the specified directory, optionally recursively and with full metadata.
curl --request GET \
--url https://cloud.comfy.org/api/userdata \
--header 'X-API-Key: <api-key>'[
{
"path": "<string>",
"size": 123,
"modified": 123
}
]API key authentication. Generate an API key from your account settings at https://comfy.org/account. Pass the key in the X-API-Key header.
The directory path to list files from. Must include trailing slash. Example: "workflows/" or "settings/"
If true, include files in subdirectories. Otherwise only lists files directly in the specified directory.
Whether to split file information by type. Note: Accepted for ComfyUI API compatibility but currently ignored.
Whether to return full file metadata. Note: Accepted for ComfyUI API compatibility but currently ignored (always returns full info).