Glemad

    Developer Platform

    Build with the
    Glemad API

    Powered by PulseADT, an AI-native autonomous security platform. Five specialized APIs covering the full threat lifecycle, accessible via a single authenticated endpoint.

    92%
    Detection accuracy
    1.2s
    Median response time
    <5%
    False positive rate

    Capabilities

    Five APIs. One platform.

    Each API is independently deployable, or combined to form a full-stack autonomous security layer.

    Threat Detection API

    POST /v1/threats/analyze

    PulseADT's intelligence engine (ADT Neural, ADT Anomaly, and ADT-4 Pro) classifies and scores security events in real time.

    Vulnerability Scan API

    POST /v1/scans/vapt

    Full ADT vulnerability assessment pipeline orchestrated across network, web, and TLS layers, returned as a structured report.

    Threat Intelligence API

    GET /v1/intelligence/iocs

    Query a continuously updated feed of indicators of compromise (IOCs), malicious IPs, file hashes, and domain reputation data.

    Compliance Report API

    POST /v1/compliance/report

    Generate audit-ready compliance reports against GDPR, HIPAA, and PCI-DSS frameworks mapped to your asset inventory.

    Active Response API

    POST /v1/response/block

    Trigger automated countermeasures: block IPs at the firewall layer, quarantine user accounts, and log forensic trails.

    Getting started

    Up and running in minutes

    01

    Get your API key

    Create a Glemad account and generate a secret API key from the developer console. Keys are scoped to your organization.

    02

    Make your first request

    Pass your key as a Bearer token in the Authorization header. Hit any endpoint from curl, Python, Node, or your language of choice.

    03

    Handle the response

    Every response returns structured JSON with a confidence score, severity classification, raw signals, and recommended actions.

    Example

    Your first API call

    Analyze a security event with the Threat Detection endpoint. Pass a raw log line, a JSON payload, or a structured event object.

    curl
    Python
    # Analyze a security event
    curl -X POST https://api.glemad.com/v1/threats/analyze \
      -H "Authorization: Bearer YOUR_API_KEY" \
      -H "Content-Type: application/json" \
      -d '{
        "source_ip": "203.0.113.42",
        "event_type": "login_failure",
        "count": 47,
        "window_seconds": 60,
        "user_agent": "python-requests/2.28.0"
      }'
    200 OK
    {
      "event_id": "evt_01HX9B2MR7",
      "threat_score": 0.94,
      "severity": "critical",
      "classification": "brute_force_credential_stuffing",
      "confidence": 0.92,
      "recommended_action": "block_ip",
      "models_used": ["adt-neural", "adt-anomaly", "adt-4-pro"],
      "latency_ms": 1180
    }

    Ready to start building?

    Explore the full reference documentation or reach out to get early access to the Glemad API.