Skip to content

Filesystem

Compozy Filesystem HTTP endpoints.

For people running agent work31 pages in this section
GET/api/fs/browse

Query Parameters

path?string

Absolute directory path to list (defaults to the operator home)

show_hidden?boolean

Include dotfiles in the listing

dirs_only?boolean

Return only directory entries

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/api/fs/browse"
{  "entries": [    {      "is_dir": true,      "name": "string",      "path": "string"    }  ],  "home": "string",  "parent": "string",  "path": "string"}