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

# Get Cluster Graph

> GET /clusters/graph — full cluster graph with nodes and edges.



## OpenAPI

````yaml /openapi.json get /v1/clusters/graph
openapi: 3.1.0
info:
  description: Causeloop Platform Backend
  title: Causeloop API
  version: 1.0.0
servers: []
security: []
paths:
  /v1/clusters/graph:
    get:
      tags:
        - clusters
      summary: Get Cluster Graph
      description: GET /clusters/graph — full cluster graph with nodes and edges.
      operationId: get_cluster_graph_v1_clusters_graph_get
      responses:
        '200':
          content:
            application/json:
              schema: {}
          description: Successful Response
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      scheme: bearer
      type: http

````