cURL
curl -X GET https://api.bizmori.com/api/v2/orders/ORDER_ID \
-H "Authorization: Bearer YOUR_API_TOKEN"{
"data": {
"type": "antiAi",
"orderId": "1234567890123456789",
"channel": "api",
"thumbnailImageUrl": "https://s3.amazonaws.com/...",
"status": "complete",
"orderName": "anti_ai_2026-03-12",
"fileCount": 3,
"createdAt": "2026-03-12T10:00:00.000Z",
"updatedAt": "2026-03-12T10:05:00.000Z",
"errors": null
}
}Orders
주문 상세 조회
GET
/
api
/
v2
/
orders
/
{orderId}
cURL
curl -X GET https://api.bizmori.com/api/v2/orders/ORDER_ID \
-H "Authorization: Bearer YOUR_API_TOKEN"{
"data": {
"type": "antiAi",
"orderId": "1234567890123456789",
"channel": "api",
"thumbnailImageUrl": "https://s3.amazonaws.com/...",
"status": "complete",
"orderName": "anti_ai_2026-03-12",
"fileCount": 3,
"createdAt": "2026-03-12T10:00:00.000Z",
"updatedAt": "2026-03-12T10:05:00.000Z",
"errors": null
}
}Documentation Index
Fetch the complete documentation index at: https://docs.bizmori.com/llms.txt
Use this file to discover all available pages before exploring further.
인증
외부 클라이언트 접근을 위한 API 키
경로 매개변수
주문 ID
응답
성공
주문 상세 정보
Hide child attributes
Hide child attributes
주문 ID
주문 이름
주문 타입
사용 가능한 옵션:
antiAi, watermarkEmbed, watermarkExtract, aiDetection 주문 채널
사용 가능한 옵션:
api, web 주문 상태
사용 가능한 옵션:
pending, inProgress, complete, failed, expired 파일 수
썸네일 이미지 URL (프리사인드 URL, 1시간 유효). aiDetection 주문에서 generateThumbnail 옵션 사용 시에만 반환됩니다. 만료 상태 시 null.
원본 입력 이미지 다운로드 URL (프리사인드 URL, 1시간 유효). aiDetection 주문 전용. 만료 상태 시 null.
생성 시각
수정 시각
에러 메시지 (실패 시)
워터마크 텍스트 목록 (watermarkEmbed 주문 전용)
추출된 워터마크 텍스트 (watermarkExtract 주문 전용)
AI 감지 확률 (aiDetection 주문 전용)
주문 타입별 상태 코드. watermarkExtract 주문:
- detected - 워터마크 검출됨
- undetected - 워터마크 미검출 aiDetection 주문 (probability 기반 자동 계산):
- likely_real - probability < 0.25
- uncertain_real - 0.25 <= probability < 0.5
- uncertain_ai - 0.5 <= probability < 0.75
- likely_ai - probability >= 0.75 다른 주문 타입에서는 반환되지 않습니다.
AI 판별 히트맵 이미지 다운로드 URL (aiDetection 주문 전용, generateHeatmap 옵션 사용 시 반환)
원본 위 히트맵 오버레이 이미지 다운로드 URL (aiDetection 주문 전용, generateOverlay 옵션 사용 시 반환)
⌘I