Skip to main content
GET
/
api
/
v1
/
builders
/
{uuid}
/
files
/
read
Read a file from the builder
curl --request GET \
  --url https://{subdomain}.mihu.ai/api/v1/builders/{uuid}/files/read \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "path": "<string>",
    "content": "<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
required

File path relative to the app root.

Response

File contents.

success
boolean
Example:

true

data
object