EDR & XDR API
New Release
The EDR & XDR API is newly available. This API provides unified access to endpoint detection and response platforms.
Overview
The Unizo EDR & XDR API provides a unified interface for managing endpoint detection and response across multiple security platforms.
Supported Platforms
- CrowdStrike Falcon
- SentinelOne
- Microsoft Defender for Endpoint
- Carbon Black
Quick Example
import { Unizo } from '@unizo/sdk';
const unizo = new Unizo({ apiKey: 'your_api_key' });
// Get endpoint information
const endpoints = await unizo.edrXdr.endpoints.list({
provider: 'crowdstrike',
status: 'online'
});
// Isolate an endpoint
await unizo.edrXdr.endpoints.isolate({
endpointId: 'endpoint-123',
reason: 'Suspicious activity detected'
});