Skip to main content
GET
/
api
/
v1
/
builders
/
{uuid}
/
files
List files in the builder
curl --request GET \
  --url https://{subdomain}.mihu.ai/api/v1/builders/{uuid}/files \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "name": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Use a Bearer token to access these API endpoints. Example: "Bearer {your-token}"

Path Parameters

uuid
string<uuid>
required

Query Parameters

path
string
default:.

Directory relative to the app root. Default '.'.

Response

200 - application/json

Directory listing.

success
boolean
Example:

true

data
object[]