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

# List Memory Sources

> Fetch a paginated list of all memory sources for an agent



## OpenAPI

````yaml /api-reference/openapi.json get /v1/bot/source/readall
openapi: 3.0.0
info:
  title: BoostGPT API
  version: 1.0.0
  description: API for managing AI agents with memory capabilities
servers:
  - url: https://api.boostgpt.co
    description: Production server
security:
  - BearerAuth: []
tags:
  - name: Agent
    description: Operations for managing AI agents
  - name: Memory
    description: Operations for managing agent memory sources
  - name: Chat
    description: Operations for chatting with agents and managing conversations
  - name: Subscribers
    description: Operations for managing subscribers and leads
  - name: Tools
    description: Operations for managing agent tools and MCP server integrations
  - name: Analytics
    description: Operations for retrieving agent statistics and analytics
  - name: Heartbeat
    description: Operations for managing autonomous agent scheduling and execution
  - name: User Memory
    description: Operations for managing per-user memory entries
  - name: Email
    description: Operations for managing agent email functionality
  - name: Triggers
    description: Operations for firing proactive agent trigger events
  - name: CRM
    description: >-
      Operations for managing agent CRM contacts, pipelines, deals, follow-ups,
      and reports
  - name: Workflows
    description: Operations for managing agent workflow automations
  - name: Calendar
    description: Operations for managing agent calendar settings, availability, and events
  - name: Workspace
    description: Operations for managing agent workspaces and files
paths:
  /v1/bot/source/readall:
    get:
      tags:
        - Memory
      summary: List Memory Sources
      description: Fetch a paginated list of all memory sources for an agent
      parameters:
        - name: project_id
          in: query
          required: true
          schema:
            type: string
          description: Project ID
        - name: bot_id
          in: query
          required: true
          schema:
            type: string
          description: Agent ID
        - name: page
          in: query
          required: false
          schema:
            type: integer
            default: 1
          description: Page number
        - name: per_page
          in: query
          required: false
          schema:
            type: integer
            default: 10
          description: Items per page
      responses:
        '200':
          description: Memory sources retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MemorySourceListResponse'
components:
  schemas:
    MemorySourceListResponse:
      type: object
      properties:
        sources:
          type: array
          items:
            $ref: '#/components/schemas/MemorySourceObject'
        pagination:
          $ref: '#/components/schemas/Pagination'
    MemorySourceObject:
      type: object
      description: Memory source object (used in list responses)
      properties:
        id:
          type: string
          description: Memory source ID
        uuid:
          type: string
          description: Memory source unique identifier
        title:
          type: string
          description: Title of the memory source
        description:
          type: string
          description: Description of the memory source
        source:
          type: string
          description: The source URL or origin
        content:
          type: string
          description: The actual content or URL to fetch
        type:
          type: string
          description: Type of memory source (e.g., 'website', 'document', 'text')
        forget_after:
          type: string
          description: Forget duration setting (e.g., 'never', '30d')
        sync_frequency:
          type: string
          description: Sync frequency setting (e.g., 'never', 'daily', 'weekly')
        links:
          type: array
          description: Extracted links from the source
          items:
            type: object
            properties:
              url:
                type: string
                description: Link URL
              title:
                type: string
                description: Page title
              tokens:
                type: integer
                description: Number of tokens in the page content
              favicon:
                type: string
                description: Favicon URL
        tags:
          type: array
          items:
            type: string
          description: Tags associated with the source
        tokens:
          type: integer
          description: Total number of tokens across all content
        status:
          type: string
          description: Processing status (e.g., 'success', 'pending', 'failed')
        synced_at:
          type: string
          format: date-time
          nullable: true
          description: Last sync timestamp
        forget_after_at:
          type: string
          format: date-time
          nullable: true
          description: Timestamp when the source will be forgotten
        created_at:
          type: string
          format: date-time
          description: Creation timestamp
        updated_at:
          type: string
          format: date-time
          description: Last update timestamp
    Pagination:
      type: object
      properties:
        page:
          type: integer
          description: Current page number
        per_page:
          type: integer
          description: Items per page
        total:
          type: integer
          description: Total number of items
        total_pages:
          type: integer
          description: Total number of pages
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: Enter your API key

````