구독 관리

API 문서

인증

모든 API 요청에 Bearer 토큰을 포함하세요.

curl -H "Authorization: Bearer bo_your_api_key_here" \
  https://buildorder.kr/api/vectorize

Rate Limiting

플랜분당 요청
Free10
Pro60
Business300
Enterprise1,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/render

2D 도면을 3D 렌더링

Request Body

{ "scene": {...} }

Response

{ "image": "base64...", "mimeType": "image/png" }
GET/api/catalog/products

자재 카탈로그 조회

Response

{ "products": [...], "total": 100 }