Skip to content
Select themeSelect language

`GET /api/apps/{id}/files` -- the App's file tree (metadata only).

GET
/api/apps/{id}/files
curl --request GET \
--url https://example.com/api/apps/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/files
id
required
string format: uuid
Media typeapplication/json
Array<object>

File-tree row on the wire – metadata only (no content), hex etag.

object
etag
required
string
is_binary
required
boolean
language
required
string
path
required
string
size_bytes
required
integer format: int64
updated_at
required
string format: date-time
Examplegenerated
[
{
"etag": "example",
"is_binary": true,
"language": "example",
"path": "example",
"size_bytes": 1,
"updated_at": "2026-04-15T12:00:00Z"
}
]