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

# Get Public Complete State At Commit

> Anonymous read of node state at a specific commit (historical).



## OpenAPI

````yaml get /public/orgs/{org_id}/nodes/{node_id}/tree/{branch}/commits/{commit_id}/complete
openapi: 3.1.0
info:
  title: Flow API
  description: Content-addressing backend with Git-like versioning
  version: 1.0.0
servers:
  - url: https://api.yertle.com
    description: Production
security: []
paths:
  /public/orgs/{org_id}/nodes/{node_id}/tree/{branch}/commits/{commit_id}/complete:
    get:
      tags:
        - public
      summary: Get Public Complete State At Commit
      description: Anonymous read of node state at a specific commit (historical).
      operationId: >-
        get_public_complete_state_at_commit_public_orgs__org_id__nodes__node_id__tree__branch__commits__commit_id__complete_get
      parameters:
        - name: org_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Org Id
        - name: node_id
          in: path
          required: true
          schema:
            type: string
            title: Node Id
        - name: branch
          in: path
          required: true
          schema:
            type: string
            title: Branch
        - name: commit_id
          in: path
          required: true
          schema:
            type: string
            title: Commit Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NodeCompleteStateResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    NodeCompleteStateResponse:
      properties:
        node:
          additionalProperties: true
          type: object
          title: Node
          description: Node metadata (id, title, description, org_id, timestamps)
        tags:
          additionalProperties: true
          type: object
          title: Tags
          description: Node tags
        directories:
          items:
            type: string
          type: array
          title: Directories
          description: Directory paths the node belongs to
        documentation:
          items: {}
          type: array
          title: Documentation
          description: Attached documentation entries
        child_nodes:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Child Nodes
          description: Child node summaries
        visual_properties:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Visual Properties
          description: Visual properties for child nodes
        connections:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Connections
          description: Connections between child nodes
        parent_nodes:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Parent Nodes
          description: Parent nodes that contain this node
        ingress_connections:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Ingress Connections
          description: Incoming connections from sibling contexts
        egress_connections:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Egress Connections
          description: Outgoing connections to sibling contexts
        metadata:
          additionalProperties: true
          type: object
          title: Metadata
          description: Aggregate counts (child/connection totals)
      additionalProperties: true
      type: object
      required:
        - node
      title: NodeCompleteStateResponse
      description: >-
        Full state for a node (rendered canvas view).


        The response contains the node's metadata plus all visual + relational
        data

        needed by the frontend to render the canvas: child nodes, visual
        properties,

        connections, parents, and branch context. Nested shapes are
        intentionally

        loose because the visual schema is evolving.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    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

````