> ## 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.

# List portfolio entries



## OpenAPI

````yaml /openapi.json get /portfolio-entries
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:
  /portfolio-entries:
    get:
      tags:
        - Portfolio
      summary: List portfolio entries
      operationId: listPortfolioEntries
      parameters:
        - $ref: '#/components/parameters/FundIdQuery'
        - $ref: '#/components/parameters/FundCodeQuery'
        - $ref: '#/components/parameters/Period'
        - $ref: '#/components/parameters/DocumentIdQuery'
        - $ref: '#/components/parameters/PortfolioSection'
        - $ref: '#/components/parameters/Q'
        - $ref: '#/components/parameters/Limit'
        - $ref: '#/components/parameters/Offset'
      responses:
        '200':
          description: Paged normalized portfolio entries.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PortfolioEntriesResponse'
components:
  parameters:
    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
    Period:
      name: period
      in: query
      required: false
      description: Filter by report period.
      schema:
        type: string
    DocumentIdQuery:
      name: document_id
      in: query
      required: false
      description: Filter by internal document id.
      schema:
        type: integer
        minimum: 1
    PortfolioSection:
      name: section
      in: query
      required: false
      description: Filter by portfolio section.
      schema:
        type: string
    Q:
      name: q
      in: query
      required: false
      description: Text search query.
      schema:
        type: string
    Limit:
      name: limit
      in: query
      required: false
      description: Maximum number of rows to return.
      schema:
        type: integer
        minimum: 1
        maximum: 500
    Offset:
      name: offset
      in: query
      required: false
      description: Number of rows to skip.
      schema:
        type: integer
        minimum: 0
  schemas:
    PortfolioEntriesResponse:
      type: object
      properties:
        total:
          type: integer
        limit:
          type: integer
        offset:
          type: integer
        portfolio_entries:
          type: array
          items:
            $ref: '#/components/schemas/PortfolioEntry'
      required:
        - total
        - limit
        - offset
        - portfolio_entries
    PortfolioEntry:
      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
        section:
          type: string
          nullable: true
        security:
          type: string
          nullable: true
        isin:
          type: string
          nullable: true
        issuer:
          type: string
          nullable: true
        bank:
          type: string
          nullable: true
        maturity_date:
          type: string
          nullable: true
        transaction_date:
          type: string
          nullable: true
        price:
          type: string
          nullable: true
        numeric_price:
          type: number
          nullable: true
        transaction_value:
          type: string
          nullable: true
        numeric_transaction_value:
          type: number
          nullable: true
        nominal_value:
          type: string
          nullable: true
        numeric_nominal_value:
          type: number
          nullable: true
        market_value:
          type: string
          nullable: true
        numeric_market_value:
          type: number
          nullable: true
        rate:
          type: string
          nullable: true
        numeric_rate:
          type: number
          nullable: true
        amount:
          type: string
          nullable: true
        numeric_amount:
          type: number
          nullable: true
        currency:
          type: string
          nullable: true
        raw_row:
          type: string
          nullable: true
        columns:
          type: array
          items:
            $ref: '#/components/schemas/PortfolioColumn'
    PortfolioColumn:
      type: object
      properties:
        header:
          type: string
          nullable: true
        key:
          type: string
          nullable: true
        value:
          type: string
          nullable: true

````