Skip to main content
POST
/
api
/
v1
/
builders
/
{uuid}
/
review
Run an AI code review
curl --request POST \
  --url https://{subdomain}.mihu.ai/api/v1/builders/{uuid}/review \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "passed": true,
    "summary": "<string>",
    "issues": [
      {}
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

uuid
string<uuid>
required

Response

200 - application/json

Review report.

success
boolean
Example:

true

data
object