APIs RESTful y GraphQL de alta performance para integrar nuestras soluciones de ciberseguridad en su infraestructura
curl -X GET \
https://api.grupoglobal.com/v2/threats \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"
{
"threats": [
{
"id": "thr_001",
"severity": "critical",
"type": "malware",
"status": "blocked",
"timestamp": "2025-01-16T10:30:00Z"
}
],
"total": 247,
"page": 1
}query GetSecurityMetrics {
dashboard {
threats(status: "active") {
id
severity
type
affectedAssets {
name
ip
}
}
compliance {
score
frameworks {
name
status
}
}
}
}SDK completo para Node.js y navegadores
v3.2.1Biblioteca para aplicaciones Python
v2.8.4Herramienta de línea de comandos
v1.5.2Colección completa para testing
Updated