빠른 시작
몇 분 안에 API를 시작하세요
SDK를 설치하고 첫 번째 API 호출을 하세요
- 사용할 언어에 맞는 SDK 설치
- 대시보드에서 API 토큰 받기
- 첫 번째 익명화 요청하기
- 애플리케이션에 통합하기
// Analyze text for PII
const response = await fetch('https://anonym.legal/api/presidio/analyze', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Content-Type': 'application/json'
},
body: JSON.stringify({
text: 'Contact John Smith at john.smith@company.com',
language: 'en'
})
});
const results = await response.json();
// Returns detected entities with positions and confidence scores사용 가능한 엔드포인트
POST
/api/presidio/analyzeAnalyze text to detect PII entities. Returns entity types, positions, and confidence scores.
View documentation →POST
/api/presidio/anonymizeAnonymize detected PII using your chosen method. Returns anonymized text.
View documentation →POST
/api/presidio/batchProcess multiple documents in a single request. Enterprise plans support up to 100 documents.
View documentation →GET
/api/healthCheck API status and service health. No authentication required.
Public endpointAPI 기능
JWT 인증
모든 API 호출을 위한 안전한 토큰 기반 인증
요금 제한
명확한 헤더로 공정한 요금 제한. 기업을 위한 높은 한도
코드 예제
여러 프로그래밍 언어로 준비된 사용 가능한 예제