인증
모든 API 요청에 Bearer 토큰을 포함하세요.
curl -H "Authorization: Bearer bo_your_api_key_here" \ https://buildorder.kr/api/vectorize
Rate Limiting
| 플랜 | 분당 요청 |
|---|---|
| Free | 10 |
| Pro | 60 |
| Business | 300 |
| Enterprise | 1,000 |
POST
/api/vectorize도면 이미지를 벡터 데이터로 변환
Request Body
{ "image": "base64..." }Response
{ "walls": [...], "doors": [...], "windows": [...] }POST
/api/ocr도면 이미지에서 자재 목록 추출
Request Body
{ "image": "base64..." }Response
{ "materials": [...], "building_info": {...} }POST
/api/render2D 도면을 3D 렌더링
Request Body
{ "scene": {...} }Response
{ "image": "base64...", "mimeType": "image/png" }GET
/api/catalog/products자재 카탈로그 조회
Response
{ "products": [...], "total": 100 }