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

# Relationship Graph

> Return the alert-indicator relationship graph.

Includes the current alert, its indicators, and for each indicator
the other alerts it appears in (capped by sibling_limit).



## OpenAPI

````yaml GET /v1/alerts/{alert_uuid}/relationship-graph
openapi: 3.1.0
info:
  title: Calseta
  description: SOC data platform for security agent consumption
  version: dev
servers: []
security: []
paths:
  /v1/alerts/{alert_uuid}/relationship-graph:
    get:
      tags:
        - alerts
      summary: Get Relationship Graph
      description: |-
        Return the alert-indicator relationship graph.

        Includes the current alert, its indicators, and for each indicator
        the other alerts it appears in (capped by sibling_limit).
      operationId: get_relationship_graph_v1_alerts__alert_uuid__relationship_graph_get
      parameters:
        - name: alert_uuid
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Alert Uuid
        - name: sibling_limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 50
            minimum: 1
            default: 10
            title: Sibling Limit
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataResponse_AlertRelationshipGraph_'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    DataResponse_AlertRelationshipGraph_:
      properties:
        data:
          $ref: '#/components/schemas/AlertRelationshipGraph'
        meta:
          additionalProperties: true
          type: object
          title: Meta
      type: object
      required:
        - data
      title: DataResponse[AlertRelationshipGraph]
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    AlertRelationshipGraph:
      properties:
        alert:
          $ref: '#/components/schemas/GraphAlertNode'
        indicators:
          items:
            $ref: '#/components/schemas/GraphIndicatorNode'
          type: array
          title: Indicators
      type: object
      required:
        - alert
        - indicators
      title: AlertRelationshipGraph
      description: Complete graph data returned by the relationship-graph endpoint.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    GraphAlertNode:
      properties:
        uuid:
          type: string
          title: Uuid
        title:
          type: string
          title: Title
        severity:
          type: string
          title: Severity
        status:
          type: string
          title: Status
        source_name:
          type: string
          title: Source Name
        occurred_at:
          type: string
          format: date-time
          title: Occurred At
        tags:
          items:
            type: string
          type: array
          title: Tags
      type: object
      required:
        - uuid
        - title
        - severity
        - status
        - source_name
        - occurred_at
        - tags
      title: GraphAlertNode
      description: Compact alert node for the relationship graph.
    GraphIndicatorNode:
      properties:
        uuid:
          type: string
          title: Uuid
        type:
          type: string
          title: Type
        value:
          type: string
          title: Value
        malice:
          type: string
          title: Malice
        first_seen:
          type: string
          format: date-time
          title: First Seen
        last_seen:
          type: string
          format: date-time
          title: Last Seen
        is_enriched:
          type: boolean
          title: Is Enriched
        enrichment_summary:
          additionalProperties:
            type: string
          type: object
          title: Enrichment Summary
        total_alert_count:
          type: integer
          title: Total Alert Count
        sibling_alerts:
          items:
            $ref: '#/components/schemas/GraphAlertNode'
          type: array
          title: Sibling Alerts
      type: object
      required:
        - uuid
        - type
        - value
        - malice
        - first_seen
        - last_seen
        - is_enriched
        - enrichment_summary
        - total_alert_count
        - sibling_alerts
      title: GraphIndicatorNode
      description: Indicator node with sibling alerts for the relationship graph.

````