BIM Analysis API Reference

Welcome to the MyBimApi developer documentation. Learn how to programmatically analyze your IFC models.

Authentication

All API requests must be authenticated using a Bearer token.

BASH
curl -H "Authorization: Bearer YOUR_API_KEY" \
     https://mybimapi.com/v1/projects

Project Analysis

POST /v1/analysis/execute

Execute a stored Python script against an uploaded IFC file.

Request Body
script_id string ID of the script to run
file_id string ID of the IFC file
Response
{
  "status": "queued",
  "job_id": "job_8f7d6a5c",
  "estimated_time": "12s"
}