IMUII LogoIMUII

API Reference

API Reference

Use the IMUII Core API to integrate directly into your own tools or workflows.


POST /api/v1/projects/init

Create a new project and receive repository + token info.

Request

{
  "project_name": "test-app",
  "owner_email": "user@example.com",
  "owner_name": "John Doe"
}

Response

{
  "repo_url": "https://github.com/Lab-Sisjarkom-IMUII/test-app",
  "token": "IMUII-TOKEN-XYZ123"
}


POST /api/webhook/github

Triggered when GitHub repo receives a push event.

Behavior:

* Clone the repository

* Run build command

* Deploy to target subdomain

💡 IMUII automatically handles the entire lifecycle — no CI configuration required.