Kraftfuld REST API
Integrer PII-detektion og anonymisering i enhver applikation. Enkle endpoints, omfattende dokumentation, klar til enterprise.
Hurtig Start
Kom i gang med API'et på få minutter
Installer vores SDK og foretag dit første API-kald
- Installer SDK'et til dit sprog
- Få dit API-token fra dashboardet
- Foretag din første anonymiseringsanmodning
- Integrer i din applikation
// Analyze text for PII
const response = await fetch('https://blurgate.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 scoresTilgængelige Endpoints
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 Funktioner
JWT Authentication
Sikker token-baseret autentificering for alle API-kald
Rate Limiting
Retfærdige hastighedsgrænser med klare headers. Højere grænser for enterprise
Kode Eksempler
Klar-til-brug eksempler i flere programmeringssprog