- layouts.presentation → layouts.app 변경 (13개 파일) - 슬라이드 높이: 100vh → calc(100vh - 80px) - 슬라이드 번호 위치 중앙 정렬
333 lines
17 KiB
PHP
333 lines
17 KiB
PHP
@extends('layouts.app')
|
|
|
|
@section('title', 'KoDATA vs NICE API 중장기 도입 전략')
|
|
|
|
@push('styles')
|
|
<style>
|
|
body {
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
}
|
|
.section {
|
|
margin-bottom: 50px;
|
|
padding: 30px;
|
|
background: #f8f9fa;
|
|
border-radius: 15px;
|
|
border-left: 5px solid #1e3c72;
|
|
}
|
|
.section h2 {
|
|
color: #1e3c72;
|
|
font-size: 2em;
|
|
margin-bottom: 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 15px;
|
|
}
|
|
.section h3 {
|
|
color: #2a5298;
|
|
font-size: 1.5em;
|
|
margin-top: 30px;
|
|
margin-bottom: 15px;
|
|
padding-left: 15px;
|
|
border-left: 3px solid #2a5298;
|
|
}
|
|
.section p, .section ul, .section ol {
|
|
line-height: 1.8;
|
|
font-size: 1.1em;
|
|
color: #555;
|
|
margin-bottom: 15px;
|
|
}
|
|
.section ul, .section ol {
|
|
padding-left: 30px;
|
|
}
|
|
.section li {
|
|
margin-bottom: 12px;
|
|
}
|
|
.comparison-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
margin: 25px 0;
|
|
background: white;
|
|
border-radius: 10px;
|
|
overflow: hidden;
|
|
box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
|
|
}
|
|
.comparison-table thead {
|
|
background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
|
|
color: white;
|
|
}
|
|
.comparison-table th {
|
|
padding: 18px;
|
|
text-align: left;
|
|
font-weight: 600;
|
|
font-size: 1.1em;
|
|
}
|
|
.comparison-table td {
|
|
padding: 15px 18px;
|
|
border-bottom: 1px solid #e0e0e0;
|
|
}
|
|
.comparison-table tbody tr:hover {
|
|
background: #f5f7fa;
|
|
}
|
|
.highlight {
|
|
background: #fff3cd;
|
|
padding: 20px;
|
|
border-radius: 10px;
|
|
border-left: 5px solid #ffc107;
|
|
margin: 20px 0;
|
|
}
|
|
.info-box {
|
|
background: #e7f3ff;
|
|
padding: 20px;
|
|
border-radius: 10px;
|
|
border-left: 5px solid #2196f3;
|
|
margin: 20px 0;
|
|
}
|
|
.warning-box {
|
|
background: #ffebee;
|
|
padding: 20px;
|
|
border-radius: 10px;
|
|
border-left: 5px solid #f44336;
|
|
margin: 20px 0;
|
|
}
|
|
.badge {
|
|
display: inline-block;
|
|
padding: 5px 12px;
|
|
border-radius: 15px;
|
|
font-size: 0.85em;
|
|
font-weight: 600;
|
|
margin-left: 10px;
|
|
}
|
|
.badge.blue { background: #2196f3; color: white; }
|
|
.badge.green { background: #4caf50; color: white; }
|
|
.badge.orange { background: #ff9800; color: white; }
|
|
.badge.red { background: #f44336; color: white; }
|
|
</style>
|
|
@endpush
|
|
|
|
@section('content')
|
|
<div class="min-h-screen" style="background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%); padding: 20px;">
|
|
<div class="max-w-7xl mx-auto bg-white rounded-2xl p-12 shadow-2xl">
|
|
|
|
<div class="text-center mb-12 border-b-4 border-blue-900 pb-8">
|
|
<h1 class="text-4xl font-bold text-blue-900 mb-4">KoDATA vs NICE 기업신용등급 API</h1>
|
|
<p class="text-xl text-gray-600">중장기 도입 전략 및 종합 비교 분석</p>
|
|
</div>
|
|
|
|
<!-- 1. 개요 -->
|
|
<div class="section">
|
|
<h2><svg class="inline w-6 h-6 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-3 7h3m-3 4h3m-6-4h.01M9 16h.01" /></svg> 1. 개요</h2>
|
|
<p>
|
|
기업 신용평가 정보를 제공하는 API로 국내에서 주요한 두 업체는 <strong>한국평가데이터(KoDATA)</strong>와
|
|
<strong>NICE평가정보</strong>입니다. 이 분석은 상용 서비스에 기업신용등급 API를 도입하려는 경우
|
|
두 업체의 가격 정책과 이용 조건을 비교합니다.
|
|
</p>
|
|
<div class="info-box">
|
|
<strong><svg class="inline w-5 h-5 mr-1" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12.75L11.25 15 15 9.75M21 12a9 9 0 11-18 0 9 9 0 0118 0z" /></svg> 분석 목표</strong>
|
|
<ul>
|
|
<li>KoDATA와 NICE의 가격 정책 및 과금 구조 비교</li>
|
|
<li>라이선싱 및 계약 요건 파악</li>
|
|
<li>기술적 API 제공 방식 및 데이터 범위 검토</li>
|
|
<li>보안 컴플라이언스 및 기술 요구사항 분석</li>
|
|
<li>상용 서비스 도입 시 의사결정 기준 제시</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- 2. 회사 개요 -->
|
|
<div class="section">
|
|
<h2><svg class="inline w-6 h-6 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 21V5a2 2 0 00-2-2H7a2 2 0 00-2 2v16m14 0h2m-2 0h-5m-9 0H3m2 0h5M9 7h1m-1 4h1m4-4h1m-1 4h1m-5 10v-5a1 1 0 011-1h2a1 1 0 011 1v5m-4 0h4" /></svg> 2. 회사 개요 및 서비스 배경</h2>
|
|
|
|
<h3>2.1 한국평가데이터 (KoDATA)</h3>
|
|
<p><strong>중소기업 전문 신용평가기관</strong>으로 국내 최대 규모(약 1,370만 개 기업)의 기업 데이터베이스를 보유한 업체입니다.</p>
|
|
<ul>
|
|
<li><strong>데이터 규모:</strong> 약 1,370만 개 기업 정보 (국내 최다)</li>
|
|
<li><strong>전문 분야:</strong> 전체 보유 정보 중 약 75%가 중소기업 관련 정보</li>
|
|
<li><strong>평가 방식:</strong> 11개 지역 평가본부를 통한 현장 실사 기반 정보 수집</li>
|
|
<li><strong>신용등급:</strong> KoDATA K Rating 제공</li>
|
|
<li><strong>공신력:</strong> 금융위원회 인가 신용정보사</li>
|
|
</ul>
|
|
|
|
<h3>2.2 NICE평가정보 (NICE Information Service)</h3>
|
|
<p><strong>국내 1위 신용정보 회사</strong>로 개인신용 및 기업신용 정보를 모두 다루는 종합 금융인프라 기업입니다.</p>
|
|
<ul>
|
|
<li><strong>데이터 규모:</strong> 약 1,000만 개 이상 국내 기업 정보</li>
|
|
<li><strong>플랫폼:</strong> NICE BizINFO 웹 플랫폼 및 NICE BizAPI 운영</li>
|
|
<li><strong>신용등급:</strong> CRI등급 등 NICE 자체 기업신용평가 등급</li>
|
|
<li><strong>부가 서비스:</strong> 조기경보 서비스, 특허정보 등 통합 기업정보</li>
|
|
<li><strong>공신력:</strong> 금융위원회 인가 신용정보사</li>
|
|
</ul>
|
|
|
|
<div class="highlight">
|
|
<strong><svg class="inline w-5 h-5 mr-1" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 18v-5.25m0 0a6.01 6.01 0 001.5-.189m-1.5.189a6.01 6.01 0 01-1.5-.189m3.75 7.478a12.06 12.06 0 01-4.5 0m3.75 2.383a14.406 14.406 0 01-3 0M14.25 18v-.192c0-.983.658-1.823 1.508-2.316a7.5 7.5 0 10-7.517 0c.85.493 1.509 1.333 1.509 2.316V18" /></svg> 핵심 차이점</strong><br>
|
|
• KoDATA: 중소기업 전문, 현장 실사 기반 정보 수집<br>
|
|
• NICE: 종합 신용정보 회사, 통합 플랫폼 및 부가 서비스 강점
|
|
</div>
|
|
</div>
|
|
|
|
<!-- 3. 가격 모델 비교 -->
|
|
<div class="section">
|
|
<h2><svg class="inline w-6 h-6 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 6v12m-3-2.818l.879.659c1.171.879 3.07.879 4.242 0 1.172-.879 1.172-2.303 0-3.182C13.536 12.219 12.768 12 12 12c-.725 0-1.45-.22-2.003-.659-1.106-.879-1.106-2.303 0-3.182s2.9-.879 4.006 0l.415.33M21 12a9 9 0 11-18 0 9 9 0 0118 0z" /></svg> 3. 가격 모델과 과금 구조</h2>
|
|
|
|
<div class="warning-box">
|
|
<strong><svg class="inline w-5 h-5 mr-1" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 9v3.75m-9.303 3.376c-.866 1.5.217 3.374 1.948 3.374h14.71c1.73 0 2.813-1.874 1.948-3.374L13.949 3.378c-.866-1.5-3.032-1.5-3.898 0L2.697 16.126zM12 15.75h.007v.008H12v-.008z" /></svg> 중요 사항</strong><br>
|
|
두 업체의 API 가격 정책은 <strong>공개적으로 명시되어 있지 않으며</strong>,
|
|
기관별 개별 계약에 따라 요금이 책정되는 방식입니다.
|
|
</div>
|
|
|
|
<h3>3.1 일반적 과금 구조</h3>
|
|
<p>양사 모두 다음과 같은 형태로 운영됩니다:</p>
|
|
<ul>
|
|
<li><strong>월 구독료</strong> (정액 기본료) + <strong>사용량 기반 추가과금</strong></li>
|
|
<li>상세 금액은 제휴 협의를 통해 결정</li>
|
|
<li>대량 이용 시 볼륨 할인 적용 가능</li>
|
|
</ul>
|
|
|
|
<table class="comparison-table">
|
|
<thead>
|
|
<tr>
|
|
<th>비교 항목</th>
|
|
<th>KoDATA</th>
|
|
<th>NICE평가정보</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td><strong>가격 공개 여부</strong></td>
|
|
<td>비공개 (별도 문의)</td>
|
|
<td>비공개 (계약 협의)</td>
|
|
</tr>
|
|
<tr>
|
|
<td><strong>과금 구조</strong></td>
|
|
<td>월 구독료 + 사용량 과금 (추정)</td>
|
|
<td>TR시그니처 정액 후불제</td>
|
|
</tr>
|
|
<tr>
|
|
<td><strong>기본 건수 포함</strong></td>
|
|
<td>계약에 따라 상이</td>
|
|
<td>월 기본 제공 건수 포함</td>
|
|
</tr>
|
|
<tr>
|
|
<td><strong>볼륨 할인</strong></td>
|
|
<td>대량 이용 시 할인 가능</td>
|
|
<td>대량 고객 개별 할인 적용</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<!-- 4. API 제공 방식 -->
|
|
<div class="section">
|
|
<h2><svg class="inline w-6 h-6 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z" /><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" /></svg> 4. API 제공 방식 및 기술적 접근</h2>
|
|
|
|
<p>두 업체 모두 <strong>RESTful API</strong> 형태로 실시간 기업정보 제공을 지원합니다.</p>
|
|
|
|
<table class="comparison-table">
|
|
<thead>
|
|
<tr>
|
|
<th>기술 항목</th>
|
|
<th>KoDATA</th>
|
|
<th>NICE평가정보</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td><strong>API 방식</strong></td>
|
|
<td>REST API</td>
|
|
<td>REST API</td>
|
|
</tr>
|
|
<tr>
|
|
<td><strong>응답 형식</strong></td>
|
|
<td>JSON / XML</td>
|
|
<td>JSON</td>
|
|
</tr>
|
|
<tr>
|
|
<td><strong>배치 처리</strong></td>
|
|
<td>FTP 데이터 덤프</td>
|
|
<td>FTP 일괄 제공</td>
|
|
</tr>
|
|
<tr>
|
|
<td><strong>보안</strong></td>
|
|
<td>HTTPS, 인증키</td>
|
|
<td>HTTPS, 로그 모니터링</td>
|
|
</tr>
|
|
<tr>
|
|
<td><strong>트래픽 제어</strong></td>
|
|
<td>초당 호출 제한</td>
|
|
<td>Rate Limit</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<!-- 5. 데이터 제공 내용 -->
|
|
<div class="section">
|
|
<h2><svg class="inline w-6 h-6 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 13.125C3 12.504 3.504 12 4.125 12h2.25c.621 0 1.125.504 1.125 1.125v6.75C7.5 20.496 6.996 21 6.375 21h-2.25A1.125 1.125 0 013 19.875v-6.75zM9.75 8.625c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125v11.25c0 .621-.504 1.125-1.125 1.125h-2.25a1.125 1.125 0 01-1.125-1.125V8.625zM16.5 4.125c0-.621.504-1.125 1.125-1.125h2.25C20.496 3 21 3.504 21 4.125v15.75c0 .621-.504 1.125-1.125 1.125h-2.25a1.125 1.125 0 01-1.125-1.125V4.125z" /></svg> 5. 데이터 제공 내용 비교</h2>
|
|
|
|
<table class="comparison-table">
|
|
<thead>
|
|
<tr>
|
|
<th>항목</th>
|
|
<th>KoDATA</th>
|
|
<th>NICE평가정보</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td><strong>데이터 규모</strong></td>
|
|
<td>약 1,370만 개 기업 (국내 최다)</td>
|
|
<td>약 1,000만 개 이상 기업</td>
|
|
</tr>
|
|
<tr>
|
|
<td><strong>신용등급 체계</strong></td>
|
|
<td>KoDATA K 등급 (자체 평가)</td>
|
|
<td>CRI등급 (NICE 자체 평가)</td>
|
|
</tr>
|
|
<tr>
|
|
<td><strong>부가 서비스</strong></td>
|
|
<td>연체정보, K-ETS, 상권분석</td>
|
|
<td>조기경보, 특허/소송정보, NICE ID</td>
|
|
</tr>
|
|
<tr>
|
|
<td><strong>글로벌 정보</strong></td>
|
|
<td>글로벌 기업정보 서비스</td>
|
|
<td>NICE D&B 5억 개 이상 기업</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<!-- 6. 결론 -->
|
|
<div class="section">
|
|
<h2><svg class="inline w-6 h-6 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12.75L11.25 15 15 9.75M21 12a9 9 0 11-18 0 9 9 0 0118 0z" /></svg> 6. 결론 및 의사결정 가이드</h2>
|
|
|
|
<div class="info-box">
|
|
<strong><svg class="inline w-5 h-5 mr-1" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 21l-5.197-5.197m0 0A7.5 7.5 0 105.196 5.196a7.5 7.5 0 0010.607 10.607z" /></svg> KoDATA를 선택해야 하는 경우</strong><br>
|
|
<ul>
|
|
<li>중소기업 전문성이 중요한 경우</li>
|
|
<li>현장 실사 기반 정보가 필요한 경우</li>
|
|
<li>대기업 협력사 평가 기준 활용</li>
|
|
<li>최대 규모 데이터베이스 필요: 1,370만 개 기업 정보</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="info-box">
|
|
<strong><svg class="inline w-5 h-5 mr-1" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 21l-5.197-5.197m0 0A7.5 7.5 0 105.196 5.196a7.5 7.5 0 0010.607 10.607z" /></svg> NICE를 선택해야 하는 경우</strong><br>
|
|
<ul>
|
|
<li>종합 플랫폼이 필요한 경우: BizINFO 통합 기업정보</li>
|
|
<li>다양한 신용평가 정보 필요: 자체 + 타 기관 등급 통합</li>
|
|
<li>실시간 모니터링: 조기경보 서비스</li>
|
|
<li>부가 정보 필요: 특허, 소송, 전자서류 등</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="highlight">
|
|
<strong><svg class="inline w-5 h-5 mr-1" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 18v-5.25m0 0a6.01 6.01 0 001.5-.189m-1.5.189a6.01 6.01 0 01-1.5-.189m3.75 7.478a12.06 12.06 0 01-4.5 0m3.75 2.383a14.406 14.406 0 01-3 0M14.25 18v-.192c0-.983.658-1.823 1.508-2.316a7.5 7.5 0 10-7.517 0c.85.493 1.509 1.333 1.509 2.316V18" /></svg> 최종 권고사항</strong><br>
|
|
본 분석 자료를 토대로 KoDATA와 NICE 양사와 직접 상담하여
|
|
<strong>최신 가격 제안과 계약 조건을 확인</strong>하시기 바랍니다.
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
@endsection
|