API v1.0
MICE Developer Center
전시회, 비즈매칭, 참가 등록 등 MICE 플랫폼의 모든 기능을 API로 제공합니다. 외부 시스템과 연동하거나 커스텀 애플리케이션을 구축하세요.
Base URL: https://mice.ai.kr/apiAll Systems Operational
Quick Start
1
API 키 발급
프로젝트 설정에서 API 키를 생성하세요.
2
인증 헤더 추가
모든 요청에 x-api-key 헤더를 포함하세요.
3
API 호출
REST API로 데이터를 조회하고 조작하세요.
bash
# 폼별 전체 목록(추가 신청서·부대시설 등은 form_schema_id 필수)
curl -G "https://mice.ai.kr/api/v1/exh/submissions" \
--data-urlencode "form_schema_id=YOUR_FORM_SCHEMA_UUID" \
-H "x-api-key: YOUR_API_KEY"
# 특정 참가자 이메일로만 좁힐 때
curl -G "https://mice.ai.kr/api/v1/exh/submissions" \
--data-urlencode "email=user@example.com" \
-H "x-api-key: YOUR_API_KEY"
# 각 항목에 전체 폼 JSON(body) 포함 — include_body=true|1|yes
# (첨부 파일 ID는 storage_path·public_url 등이 포함된 객체로 확장됨)
curl -G "https://mice.ai.kr/api/v1/exh/submissions" \
--data-urlencode "form_schema_id=YOUR_FORM_SCHEMA_UUID" \
--data-urlencode "include_body=true" \
-H "x-api-key: YOUR_API_KEY"
# 목록에서 받은 id로 신청서 단건 (본문·파일 확장 동일)
curl -G "https://mice.ai.kr/api/v1/exh/submissions/SUBMISSION_UUID" \
--data-urlencode "include_body=true" \
-H "x-api-key: YOUR_API_KEY"전시회 (Exhibition)
v1
GET
/api/v1/exh/schemasGET
/api/v1/exh/submissionsGET
/api/v1/exh/submissions/:idPOST
/api/v1/exh/submissionsGET
/api/v1/exh/schemas/by-id/:formSchemaIdGET
/api/v1/exh/content/postsGET
/api/v1/exh/content/posts/:idPOST
/api/v1/exh/files/uploadGET
/api/v1/exh/files/download/:fileIdGET
/api/v1/exh/sdk/v1.jsPOST
/api/v1/exh/auth/loginGET
/api/v1/exh/auth/user조직/프로젝트
v2
GET
/api/v2/organizationsGET
/api/v2/projects/:id/membersPOST
/api/v2/projects/:id/invitations비즈매칭
v1
GET
/api/bizm/meetingsPOST
/api/bizm/meetings/requestGET
/api/bizm/companies웹훅
-
POST
/api/webhooks/tossPOST
/api/webhooks/subscriptionFeatures
API 키 인증
프로젝트별 API 키 발급
read, create, update, delete 권한을 세밀하게 제어하고, Rate Limit을 설정할 수 있습니다.
웹훅
실시간 이벤트 수신
신청서 제출, 결제 완료 등의 이벤트를 실시간으로 수신하고 자동화를 구축하세요.
SDK & 임베드
다양한 통합 방법
JavaScript SDK, iframe 임베드, REST API 등 다양한 방법으로 통합하세요.