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

# Browse Pages

> Browse accessible Notion pages for root selection.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/knowledge-base/knowledge-bases/{kb_id}/sources/{source_id}/pages
openapi: 3.1.0
info:
  title: Feather API
  description: >-
    Unified customer experience platform API. Manages identity, conversations,
    memory, agents, procedures, policies, model routing, knowledge bases,
    integrations, and runtime execution.
  version: 1.21.0
servers:
  - url: https://api-sandbox.featherhq.com
    description: Sandbox
  - url: http://localhost:8000
    description: Local dev
security: []
paths:
  /v1/knowledge-base/knowledge-bases/{kb_id}/sources/{source_id}/pages:
    get:
      tags:
        - knowledge-base-connectors
      summary: Browse Pages
      description: Browse accessible Notion pages for root selection.
      operationId: >-
        browse_pages_v1_knowledge_base_knowledge_bases__kb_id__sources__source_id__pages_get
      parameters:
        - name: kb_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Kb Id
        - name: source_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Source Id
        - name: page_size
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            default: 20
            title: Page Size
        - name: start_cursor
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Start Cursor
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BrowseResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    BrowseResponse:
      properties:
        items:
          items:
            $ref: '#/components/schemas/BrowsePageItem'
          type: array
          title: Items
        next_cursor:
          anyOf:
            - type: string
            - type: 'null'
          title: Next Cursor
        has_more:
          type: boolean
          title: Has More
          default: false
      type: object
      required:
        - items
      title: BrowseResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    BrowsePageItem:
      properties:
        provider_item_id:
          type: string
          maxLength: 255
          title: Provider Item Id
        title:
          type: string
          maxLength: 500
          title: Title
        icon:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Icon
        url:
          anyOf:
            - type: string
              maxLength: 1000
            - type: 'null'
          title: Url
        parent_type:
          anyOf:
            - type: string
              maxLength: 50
            - type: 'null'
          title: Parent Type
        parent_title:
          anyOf:
            - type: string
              maxLength: 500
            - type: 'null'
          title: Parent Title
        last_edited_time:
          anyOf:
            - type: string
            - type: 'null'
          title: Last Edited Time
      type: object
      required:
        - provider_item_id
        - title
      title: BrowsePageItem
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````