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

# Get Distribution Channel Subgraphs by Namespace

> Get a distribution channel's subgraphs filtered by namespace.



## OpenAPI

````yaml get /distribution-channels/{channel_id}/subgraphs/{namespace}
openapi: 3.1.0
info:
  title: LangGraph Platform
  version: 0.1.0
servers:
  - url: https://api.b-bot.space/api/v2/
security:
  - apiKey: []
tags:
  - name: Distribution Channels
    description: >-
      A distribution channel is a configured instance of a graph. Distribution
      channels control where and how your AI agents are deployed (Chat, Embed,
      Template, etc.).
  - name: Experts
    description: >-
      Expert CRUD operations for managing AI experts. Only available for
      Agencies and Middleware Partners.
  - name: Threads
    description: A thread contains the accumulated outputs of a group of runs.
  - name: Thread Runs
    description: >-
      A run is an invocation of a graph / assistant on a thread. It updates the
      state of the thread.
  - name: Stateless Runs
    description: >-
      A run is an invocation of a graph / assistant, with no state or memory
      persistence.
  - name: Crons (Plus tier)
    description: >-
      A cron is a periodic run that recurs on a given schedule. The repeats can
      be isolated, or share state in a thread
  - name: Store
    description: >-
      Store is an API for managing persistent key-value store (long-term memory)
      that is available from any thread.
  - name: A2A
    description: >-
      Agent-to-Agent Protocol related endpoints for exposing assistants as
      A2A-compliant agents.
  - name: MCP
    description: >-
      Model Context Protocol related endpoints for exposing an agent as an MCP
      server.
  - name: System
    description: System endpoints for health checks, metrics, and server information.
paths:
  /distribution-channels/{channel_id}/subgraphs/{namespace}:
    get:
      tags:
        - Distribution Channels
      summary: Get Distribution Channel Subgraphs by Namespace
      description: Get a distribution channel's subgraphs filtered by namespace.
      operationId: >-
        get_distribution_channel_subgraphs_by_namespace_distribution_channels__channel_id__subgraphs__namespace__get
      parameters:
        - description: The ID of the distribution channel.
          required: true
          schema:
            type: string
            format: uuid
            title: Channel Id
          name: channel_id
          in: path
        - description: Namespace of the subgraph to filter by.
          required: true
          schema:
            type: string
            title: Namespace
          name: namespace
          in: path
        - description: Recursively retrieve subgraphs of subgraphs.
          required: false
          schema:
            type: boolean
            title: Recurse
            default: false
          name: recurse
          in: query
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Subgraphs'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    Subgraphs:
      type: object
      additionalProperties:
        $ref: '#/components/schemas/GraphSchemaNoId'
      title: Subgraphs
      description: >-
        Map of graph name to graph schema metadata (`input_schema`,
        `output_schema`, `state_schema`, `config_schema`, `context_schema`).
    ErrorResponse:
      type: string
      title: ErrorResponse
      description: Error message returned from the server
    GraphSchemaNoId:
      properties:
        input_schema:
          type: object
          title: Input Schema
          description: >-
            The schema for the graph input. Missing if unable to generate JSON
            schema from graph.
        output_schema:
          type: object
          title: Output Schema
          description: >-
            The schema for the graph output. Missing if unable to generate JSON
            schema from graph.
        state_schema:
          type: object
          title: State Schema
          description: >-
            The schema for the graph state. Missing if unable to generate JSON
            schema from graph.
        config_schema:
          type: object
          title: Config Schema
          description: >-
            The schema for the graph config. Missing if unable to generate JSON
            schema from graph.
        context_schema:
          type: object
          title: Context Schema
          description: >-
            The schema for the graph context. Missing if unable to generate JSON
            schema from graph.
      type: object
      required:
        - input_schema
        - output_schema
        - state_schema
      title: GraphSchemaNoId
      description: Defines the structure and properties of a graph without an ID.
  securitySchemes:
    apiKey:
      type: apiKey
      name: bbot-api-key
      in: header
      description: API key for authentication

````