> ## Documentation Index
> Fetch the complete documentation index at: https://docs.aegister.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Recupera l'analisi degli attaccanti di Threat Blocker

> Recupera i dati della sezione Analisi degli attaccanti della pagina Stato Threat Blocker: gli IP sorgente più bloccati dalla Threat Intelligence con reputazione, paese e rete, il riepilogo per paese, le porte più prese di mira e la ripartizione tra traffico bloccato in entrata e in uscita.



## OpenAPI

````yaml get /api/v1/atb/{atb_id}/insights
openapi: 3.1.0
info:
  title: Aegister API
  version: 1.1.0
servers: []
security: []
paths:
  /api/v1/atb/{atb_id}/insights:
    get:
      tags:
        - atb
      summary: ATB attacker insights (top denied IPs + geo + ports + direction)
      description: >-
        Consolidated attacker insights for the ATB status page (one ES
        round-trip): top denied source

        IPs (with native crime score/level, enriched with geo + reputation from
        our own OneFirewall

        Threat Intelligence), a country rollup for the world map, top targeted
        ports, and the

        inbound/outbound split of blocked traffic. Mirrors the Cloud Defender
        /traffic/summary intent.
      operationId: atb_insights_retrieve
      parameters:
        - in: path
          name: atb_id
          schema:
            type: integer
          required: true
        - in: query
          name: minutes
          schema:
            type: number
            default: 720
          description: Window in minutes (30-44640).
        - in: query
          name: top
          schema:
            type: number
            default: 20
          description: How many top source IPs to return and enrich (1-100).
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: integer
                    description: |-
                      Any value different from 0 indicates an error.  
                      More details can be found in `messages`.
                    minimum: 0
                    maximum: 0
                    examples:
                      - 0
                  messages:
                    type: array
                    description: >-
                      If `error` is `1`, contains zero or more details on the
                      error.
                    examples:
                      - []
                  data:
                    type: object
          description: ''
        '401':
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: integer
                    description: |-
                      Any value different from 0 indicates an error.  
                      More details can be found in `messages`.
                    minimum: 0
                    maximum: 0
                    examples:
                      - 1
                  messages:
                    type: array
                    description: >-
                      If `error` is `1`, contains zero or more details on the
                      error.
                    examples:
                      - - 9153
          description: ''
        '404':
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: integer
                    description: |-
                      Any value different from 0 indicates an error.  
                      More details can be found in `messages`.
                    minimum: 0
                    maximum: 0
                    examples:
                      - 1
                  messages:
                    type: array
                    description: >-
                      If `error` is `1`, contains zero or more details on the
                      error.
                    examples:
                      - []
          description: ''
      security:
        - ApiKeyAuth: []
        - ApiKeyQueryParam: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-Aegister-Token
    ApiKeyQueryParam:
      type: apiKey
      in: query
      name: X-Aegister-Token

````