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

# Get Records Paginated

> Get paginated records list.

Query parameters:
- page: page number (default: 1)
- limit: records per page (default: 50, max: 200)
- search: case-insensitive search across name, file name, email
- status: repeated query param of record statuses
- type: repeated query param of logical file types (audio/video/text)
- archived: filter by archived flag



## OpenAPI

````yaml /api-reference/openapi-filtered.json get /insight/paginated
openapi: 3.1.0
info:
  title: Aseed Insight API
  version: 0.1.0
servers:
  - url: https://app.aseed.ai/custdev
security: []
tags:
  - name: insight
    description: 'Core insight endpoints: records, transcripts, generation, and chat.'
    x-displayName: Insight
  - name: insight_public
    description: Public insight endpoints for shared/public access.
    x-displayName: Insight Public
  - name: projects
    description: Project management endpoints.
    x-displayName: Projects
  - name: project_reports
    description: Project report generation and management endpoints.
    x-displayName: Project Reports
  - name: project_reports_public
    description: Public project report endpoints.
    x-displayName: Project Reports Public
  - name: prompts
    description: Custom prompts management endpoints.
    x-displayName: Prompts
  - name: presets
    description: Presets and templates endpoints.
    x-displayName: Presets
  - name: agent
    description: AI agent threads and chat endpoints.
    x-displayName: Agent
  - name: interviews
    description: AI interviewer room and session endpoints.
    x-displayName: Interviews
  - name: webhooks
    description: Incoming webhook endpoints.
    x-displayName: Webhooks
paths:
  /insight/paginated:
    get:
      tags:
        - insight
      summary: Get Records Paginated
      description: |-
        Get paginated records list.

        Query parameters:
        - page: page number (default: 1)
        - limit: records per page (default: 50, max: 200)
        - search: case-insensitive search across name, file name, email
        - status: repeated query param of record statuses
        - type: repeated query param of logical file types (audio/video/text)
        - archived: filter by archived flag
      operationId: get_records_paginated_insight_paginated_get
      parameters:
        - name: page
          in: query
          required: false
          schema:
            type: integer
            default: 1
            title: Page
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            default: 50
            title: Limit
        - name: search
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Search
        - name: status
          in: query
          required: false
          schema:
            anyOf:
              - items:
                  type: string
                type: array
              - type: 'null'
            title: Status
        - name: type
          in: query
          required: false
          schema:
            anyOf:
              - items:
                  type: string
                type: array
              - type: 'null'
            title: Type
        - name: archived
          in: query
          required: false
          schema:
            anyOf:
              - type: boolean
              - type: 'null'
            title: Archived
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedRecordResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    PaginatedRecordResponse:
      properties:
        records:
          items:
            $ref: '#/components/schemas/RecordItem'
          type: array
          title: Records
        total:
          type: integer
          title: Total
        page:
          type: integer
          title: Page
        limit:
          type: integer
          title: Limit
        has_more:
          type: boolean
          title: Has More
        remaining_size_mb:
          anyOf:
            - type: number
            - type: 'null'
          title: Remaining Size Mb
      type: object
      required:
        - records
        - total
        - page
        - limit
        - has_more
      title: PaginatedRecordResponse
      description: Paginated response for records list.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    RecordItem:
      properties:
        id:
          type: string
          title: Id
        name:
          type: string
          title: Name
        size_mb:
          type: number
          title: Size Mb
        creation_date:
          type: string
          format: date-time
          title: Creation Date
        modified_date:
          type: string
          format: date-time
          title: Modified Date
        status:
          $ref: '#/components/schemas/RecordStatus'
        is_archived:
          type: boolean
          title: Is Archived
        is_public:
          type: boolean
          title: Is Public
        participants_count:
          anyOf:
            - type: integer
            - type: 'null'
          title: Participants Count
        respondents_count:
          anyOf:
            - type: integer
            - type: 'null'
          title: Respondents Count
        respondent_names:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Respondent Names
        has_reports:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Has Reports
        duration_sec:
          anyOf:
            - type: number
            - type: 'null'
          title: Duration Sec
        file_extension:
          anyOf:
            - type: string
            - type: 'null'
          title: File Extension
        file_name:
          anyOf:
            - type: string
            - type: 'null'
          title: File Name
        file_path:
          anyOf:
            - type: string
            - type: 'null'
          title: File Path
        type:
          type: string
          title: Type
          default: text
        project:
          anyOf:
            - type: string
            - type: 'null'
          title: Project
      type: object
      required:
        - id
        - name
        - size_mb
        - creation_date
        - modified_date
        - status
        - is_archived
        - is_public
        - participants_count
        - respondents_count
        - respondent_names
      title: RecordItem
    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
    RecordStatus:
      type: string
      enum:
        - Uploaded
        - InQueue
        - InProgress
        - Finished
        - Error
      title: RecordStatus
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````