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

# List linked records for a link column



## OpenAPI

````yaml get /agent-views/{viewId}/columns/{columnId}/links/{recordId}
openapi: 3.0.0
info:
  title: Public API
  description: Public endpoints to interact with agents and orchestrate tasks
  version: '1.0'
  contact: {}
servers:
  - url: https://api.beamstudio.ai
security: []
tags: []
paths:
  /agent-views/{viewId}/columns/{columnId}/links/{recordId}:
    get:
      tags:
        - Agent Views
      summary: List linked records for a link column
      operationId: AgentViewController_listLinkedRecords
      parameters:
        - name: viewId
          required: true
          in: path
          schema:
            type: string
        - name: columnId
          required: true
          in: path
          schema:
            type: string
        - name: recordId
          required: true
          in: path
          schema:
            type: number
        - name: pageNum
          required: false
          in: query
          description: 'Page number (default: 1)'
          schema:
            minimum: 1
            default: 1
            type: number
        - name: pageSize
          required: false
          in: query
          description: 'Number of records per page (default: 25, max: 100)'
          schema:
            minimum: 1
            maximum: 100
            default: 25
            type: number
        - name: fields
          required: false
          in: query
          description: Comma-separated field names to include from linked records
          schema:
            example: field1,field2
            type: string
        - name: sort
          required: false
          in: query
          description: Comma-separated field names for sorting. Prefix with - for DESC
          schema:
            example: createdAt,-priority
            type: string
        - name: where
          required: false
          in: query
          description: 'Filter conditions: (field,op,value)'
          schema:
            example: (status,eq,active)
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListRecordsResponseDto'
      security:
        - x-api-key: []
components:
  schemas:
    ListRecordsResponseDto:
      type: object
      properties:
        list:
          type: array
          description: Array of record objects
          items:
            type: object
            additionalProperties: true
        pageInfo:
          $ref: '#/components/schemas/RecordsPageInfoDto'
      required:
        - list
        - pageInfo
    RecordsPageInfoDto:
      type: object
      properties:
        totalRows:
          type: number
          description: Total number of rows matching the query
        page:
          type: number
          description: Current page number
        pageSize:
          type: number
          description: Number of records per page
        isFirstPage:
          type: boolean
          description: Whether this is the first page
        isLastPage:
          type: boolean
          description: Whether this is the last page
      required:
        - totalRows
        - page
        - pageSize
        - isFirstPage
        - isLastPage
  securitySchemes:
    x-api-key:
      type: apiKey
      in: header
      name: x-api-key

````