강력한 REST API

모든 애플리케이션에 PII 탐지 및 익명화를 통합하세요. 간단한 엔드포인트, 포괄적인 문서, 기업 준비 완료.

빠른 시작

몇 분 안에 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/analyze

Analyze text to detect PII entities. Returns entity types, positions, and confidence scores.

View documentation →
POST/api/presidio/anonymize

Anonymize detected PII using your chosen method. Returns anonymized text.

View documentation →
POST/api/presidio/batch

Process multiple documents in a single request. Enterprise plans support up to 100 documents.

View documentation →
GET/api/health

Check API status and service health. No authentication required.

Public endpoint

API 기능

JWT 인증

모든 API 호출을 위한 안전한 토큰 기반 인증

요금 제한

명확한 헤더로 공정한 요금 제한. 기업을 위한 높은 한도

코드 예제

여러 프로그래밍 언어로 준비된 사용 가능한 예제

오늘부터 구축 시작

한 달에 300개의 무료 API 호출. 신용카드 필요 없음.