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

# Org Read Single Section

> Get a single section by ID.



## OpenAPI

````yaml /langsmith/langsmith-platform-openapi.json post /api/v1/org-charts/section/{section_id}
openapi: 3.1.0
info:
  title: LangSmith
  description: >+
    The LangSmith API is used to programmatically create and manage LangSmith
    resources.


    ## Host

    https://api.smith.langchain.com


    ## Authentication

    To authenticate with the LangSmith API, set the `X-Api-Key` header

    to a valid [LangSmith API
    key](https://docs.langchain.com/langsmith/create-account-api-key#create-an-api-key).

  version: 0.1.0
servers:
  - url: /
security: []
tags:
  - name: run
    x-group: Tracing
  - name: runs
    x-group: Tracing
  - name: sessions
    x-group: Tracing
  - name: tracer-sessions
    x-group: Tracing
  - name: datasets
    x-group: Datasets
  - name: examples
    x-group: Datasets
  - name: evaluators
    x-group: Evaluation
  - name: experiment-view-overrides
    x-group: Evaluation
  - name: experiments
    x-group: Evaluation
  - name: annotation-queues
    x-group: Feedback & Annotation
  - name: annotation_queues
    x-group: Feedback & Annotation
  - name: feedback
    x-group: Feedback & Annotation
  - name: feedback-configs
    x-group: Feedback & Annotation
  - name: alert_rules
    x-group: Monitoring
  - name: bulk-exports
    x-group: Monitoring
  - name: charts
    x-group: Monitoring
  - name: commits
    x-group: Prompts & Playground
  - name: directories
    x-group: Prompts & Playground
  - name: hub_environments
    x-group: Prompts & Playground
  - name: playground-settings
    x-group: Prompts & Playground
  - name: prompt-webhooks
    x-group: Prompts & Playground
  - name: prompts
    x-group: Prompts & Playground
  - name: tag-transitions
    x-group: Prompts & Playground
  - name: comments
    x-group: Prompt Hub
  - name: likes
    x-group: Prompt Hub
  - name: optimization-jobs
    x-group: Prompt Hub
  - name: ownerships
    x-group: Prompt Hub
  - name: repos
    x-group: Prompt Hub
  - name: settings
    x-group: Prompt Hub
  - name: tags
    x-group: Prompt Hub
  - name: integrations
    x-group: Integrations & Tools
  - name: mcp
    x-group: Integrations & Tools
  - name: mcp_vendors
    x-group: Integrations & Tools
  - name: oauth
    x-group: Integrations & Tools
  - name: tools
    x-group: Integrations & Tools
  - name: gateway-policies
    x-group: LLM Gateway
  - name: sandboxes
    x-group: Sandboxes
  - name: issues
    x-group: Issues
  - name: issues-agent
    x-group: Issues
  - name: Organizations
    x-group: Administration
  - name: SCIM Tokens
    x-group: Administration
  - name: TTL Settings
    x-group: Administration
  - name: access_policies
    x-group: Administration
  - name: api-key
    x-group: Administration
  - name: audit-logs
    x-group: Administration
  - name: auth
    x-group: Administration
  - name: aws_marketplace
    x-group: Administration
  - name: data_planes
    x-group: Administration
  - name: me
    x-group: Administration
  - name: orgs
    x-group: Administration
  - name: service-accounts
    x-group: Administration
  - name: tenant
    x-group: Administration
  - name: ttl-settings
    x-group: Administration
  - name: usage-limits
    x-group: Administration
  - name: workspaces
    x-group: Administration
  - name: ace
    x-group: System
  - name: backfills
    x-group: System
  - name: features
    x-group: System
  - name: info
    x-group: System
  - name: model-price-map
    x-group: System
  - name: public
    x-group: System
  - name: threads
    x-group: System
  - name: agents
    x-hidden: true
  - name: beacon
    x-hidden: true
  - name: engine-trial
  - name: fleet
  - name: fleet auth
    x-hidden: true
  - name: fleet credentials
    x-hidden: true
  - name: fleet github-app
    x-hidden: true
  - name: fleet integrations
    x-hidden: true
  - name: fleet mcp
    x-hidden: true
  - name: fleet threads
    x-hidden: true
  - name: fleet trigger-templates
    x-hidden: true
  - name: fleet triggers
    x-hidden: true
  - name: fleet usage
    x-hidden: true
  - name: fleet_webhooks
    x-hidden: true
  - name: health
  - name: internal
    x-hidden: true
  - name: metrics
    x-hidden: true
  - name: nps
    x-hidden: true
  - name: sandboxes-internal
    x-hidden: true
  - name: skills
    x-hidden: true
paths:
  /api/v1/org-charts/section/{section_id}:
    post:
      tags:
        - charts
      summary: Org Read Single Section
      description: Get a single section by ID.
      operationId: org_read_single_section_api_v1_org_charts_section__section_id__post
      parameters:
        - name: section_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Section Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CustomChartsRequestBase'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CustomChartsSection'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - API Key: []
        - Organization ID: []
        - Bearer Auth: []
components:
  schemas:
    CustomChartsRequestBase:
      properties:
        timezone:
          type: string
          title: Timezone
          default: UTC
        start_time:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Start Time
        end_time:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: End Time
        stride:
          $ref: '#/components/schemas/TimedeltaInput'
          default:
            days: 0
            hours: 0
            minutes: 15
        omit_data:
          type: boolean
          title: Omit Data
          default: false
      type: object
      title: CustomChartsRequestBase
    CustomChartsSection:
      properties:
        title:
          type: string
          title: Title
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        index:
          anyOf:
            - type: integer
            - type: 'null'
          title: Index
        id:
          anyOf:
            - type: string
              format: uuid
            - type: string
          title: Id
        session_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Session Id
        charts:
          items:
            $ref: '#/components/schemas/SingleCustomChartResponse'
          type: array
          title: Charts
        sub_sections:
          anyOf:
            - items:
                $ref: '#/components/schemas/SingleCustomChartSubSectionResponse'
              type: array
            - type: 'null'
          title: Sub Sections
      type: object
      required:
        - title
        - id
        - charts
      title: CustomChartsSection
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    TimedeltaInput:
      properties:
        days:
          type: integer
          title: Days
          default: 0
        hours:
          type: integer
          title: Hours
          default: 0
        minutes:
          type: integer
          title: Minutes
          default: 0
      type: object
      title: TimedeltaInput
      description: Timedelta input.
    SingleCustomChartResponse:
      properties:
        data:
          items:
            $ref: '#/components/schemas/CustomChartsDataPoint'
          type: array
          title: Data
        id:
          anyOf:
            - type: string
              format: uuid
            - type: string
          title: Id
        title:
          type: string
          title: Title
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        metadata:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Metadata
        index:
          type: integer
          title: Index
        chart_type:
          $ref: '#/components/schemas/CustomChartType'
        series:
          items:
            $ref: '#/components/schemas/CustomChartSeries'
          type: array
          title: Series
        common_filters:
          anyOf:
            - $ref: '#/components/schemas/CustomChartSeriesFilters'
            - type: 'null'
      type: object
      required:
        - data
        - id
        - title
        - index
        - chart_type
        - series
      title: SingleCustomChartResponse
    SingleCustomChartSubSectionResponse:
      properties:
        title:
          type: string
          title: Title
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        index:
          type: integer
          title: Index
        id:
          anyOf:
            - type: string
              format: uuid
            - type: string
          title: Id
        charts:
          items:
            $ref: '#/components/schemas/SingleCustomChartResponse'
          type: array
          title: Charts
      type: object
      required:
        - title
        - index
        - id
        - charts
      title: SingleCustomChartSubSectionResponse
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    CustomChartsDataPoint:
      properties:
        series_id:
          type: string
          title: Series Id
        timestamp:
          type: string
          format: date-time
          title: Timestamp
        value:
          anyOf:
            - type: integer
            - type: number
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Value
        group:
          anyOf:
            - type: string
            - type: 'null'
          title: Group
      type: object
      required:
        - series_id
        - timestamp
        - value
      title: CustomChartsDataPoint
    CustomChartType:
      type: string
      enum:
        - line
        - bar
      title: CustomChartType
      description: Enum for custom chart types.
    CustomChartSeries:
      properties:
        name:
          type: string
          title: Name
        filters:
          anyOf:
            - $ref: '#/components/schemas/CustomChartSeriesFilters'
            - type: 'null'
        metric:
          $ref: '#/components/schemas/CustomChartMetric'
        feedback_key:
          anyOf:
            - type: string
            - type: 'null'
          title: Feedback Key
        workspace_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Workspace Id
        project_metric:
          anyOf:
            - $ref: '#/components/schemas/HostProjectChartMetric'
            - type: 'null'
        id:
          anyOf:
            - type: string
              format: uuid
            - type: string
          title: Id
        group_by:
          anyOf:
            - $ref: '#/components/schemas/RunStatsGroupBySeriesResponse'
            - type: 'null'
      type: object
      required:
        - name
        - metric
        - id
      title: CustomChartSeries
    CustomChartSeriesFilters:
      properties:
        filter:
          anyOf:
            - type: string
            - type: 'null'
          title: Filter
        trace_filter:
          anyOf:
            - type: string
            - type: 'null'
          title: Trace Filter
        tree_filter:
          anyOf:
            - type: string
            - type: 'null'
          title: Tree Filter
        session:
          anyOf:
            - items:
                type: string
                format: uuid
              type: array
            - type: 'null'
          title: Session
      type: object
      title: CustomChartSeriesFilters
    CustomChartMetric:
      type: string
      enum:
        - run_count
        - latency_p50
        - latency_p99
        - latency_avg
        - first_token_p50
        - first_token_p99
        - total_tokens
        - prompt_tokens
        - completion_tokens
        - median_tokens
        - completion_tokens_p50
        - prompt_tokens_p50
        - tokens_p99
        - completion_tokens_p99
        - prompt_tokens_p99
        - feedback
        - feedback_score_avg
        - feedback_values
        - total_cost
        - prompt_cost
        - completion_cost
        - error_rate
        - streaming_rate
        - cost_p50
        - cost_p99
      title: CustomChartMetric
      description: >-
        Metrics you can chart. Feedback metrics are not available for
        organization-scoped charts.
    HostProjectChartMetric:
      type: string
      enum:
        - memory_usage
        - cpu_usage
        - disk_usage
        - restart_count
        - replica_count
        - worker_count
        - lg_run_count
        - responses_per_second
        - error_responses_per_second
        - p95_latency
      title: HostProjectChartMetric
      description: LGP Metrics you can chart.
    RunStatsGroupBySeriesResponse:
      properties:
        attribute:
          type: string
          enum:
            - name
            - run_type
            - tag
            - metadata
          title: Attribute
        path:
          anyOf:
            - type: string
            - type: 'null'
          title: Path
        max_groups:
          type: integer
          title: Max Groups
          default: 5
        set_by:
          anyOf:
            - type: string
              enum:
                - section
                - series
            - type: 'null'
          title: Set By
      type: object
      required:
        - attribute
      title: RunStatsGroupBySeriesResponse
      description: Include additional information about where the group_by param was set.
  securitySchemes:
    API Key:
      type: apiKey
      in: header
      name: X-API-Key
    Organization ID:
      type: apiKey
      in: header
      name: X-Organization-Id
    Bearer Auth:
      type: http
      description: >-
        Bearer tokens are used to authenticate from the UI. Must also specify
        x-tenant-id or x-organization-id (for org scoped apis).
      scheme: bearer

````