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

# Get section detail



## OpenAPI

````yaml /openapi.json get /sections/{sectionId}
openapi: 3.0.3
info:
  title: MKK Structured Data API
  version: 0.1.0
  description: >-
    Read-only JSON API for normalized MKK/VYK PDF extraction results, portfolio
    entries, and data-quality review queues.
servers:
  - url: https://mkk.celebi.me/api
security: []
tags:
  - name: System
  - name: Funds
  - name: Sections
  - name: Documents
  - name: Line Items
  - name: Portfolio
  - name: Stocks
  - name: Quality
  - name: Exports
paths:
  /sections/{sectionId}:
    get:
      tags:
        - Sections
      summary: Get section detail
      operationId: getSection
      parameters:
        - $ref: '#/components/parameters/SectionIdPath'
        - $ref: '#/components/parameters/FundIdQuery'
        - $ref: '#/components/parameters/FundCodeQuery'
        - $ref: '#/components/parameters/IncludeValues'
      responses:
        '200':
          description: Section detail with canonical line items.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SectionDetail'
        '404':
          description: The requested resource was not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  parameters:
    SectionIdPath:
      name: sectionId
      in: path
      required: true
      description: Canonical section slug.
      schema:
        type: string
    FundIdQuery:
      name: fund_id
      in: query
      required: false
      description: Filter by fund code.
      schema:
        type: string
    FundCodeQuery:
      name: fund_code
      in: query
      required: false
      description: Filter by fund code.
      schema:
        type: string
    IncludeValues:
      name: include_values
      in: query
      required: false
      description: 'Include nested values. Truthy values: 1, true, yes, on.'
      schema:
        type: string
  schemas:
    SectionDetail:
      allOf:
        - $ref: '#/components/schemas/SectionSummary'
        - type: object
          properties:
            line_items:
              type: array
              items:
                $ref: '#/components/schemas/LineItem'
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
        routes:
          type: array
          items:
            type: string
    SectionSummary:
      type: object
      properties:
        id:
          type: string
        sectionId:
          type: string
        name:
          type: string
        sort_order:
          type: integer
        line_item_count:
          type: integer
        document_count:
          type: integer
        fund_count:
          type: integer
    LineItem:
      type: object
      properties:
        id:
          type: integer
        slug:
          type: string
        name:
          type: string
        sectionId:
          type: string
          nullable: true
        sectionName:
          type: string
          nullable: true
        section:
          type: string
          nullable: true
        unit:
          type: string
          nullable: true
        kind:
          type: string
        value_count:
          type: integer
        fund_count:
          type: integer
        document_count:
          type: integer
        values:
          type: array
          items:
            $ref: '#/components/schemas/LineItemValue'
    LineItemValue:
      type: object
      properties:
        id:
          type: integer
        document_id:
          type: integer
        disclosure_index:
          type: string
          nullable: true
        file_name:
          type: string
          nullable: true
        fund_code:
          type: string
          nullable: true
        fund_title:
          type: string
          nullable: true
        period:
          type: string
          nullable: true
        line_item_id:
          type: integer
        line_item_slug:
          type: string
          nullable: true
        line_item_name:
          type: string
          nullable: true
        sectionId:
          type: string
          nullable: true
        sectionName:
          type: string
          nullable: true
        canonical_section:
          type: string
          nullable: true
        kind:
          type: string
          nullable: true
        raw_section:
          type: string
          nullable: true
        raw_label:
          type: string
          nullable: true
        value:
          type: string
          nullable: true
        numeric_value:
          type: number
          nullable: true
        unit:
          type: string
          nullable: true
        source:
          type: string
          nullable: true
        mapping_method:
          type: string
          nullable: true
        mapping_confidence:
          type: number
          nullable: true

````