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

# List all public AI sources

Returns all public sources in our store used for AI. Limited to 250 most recent entries.


## OpenAPI

````yaml https://api.getfernand.com/openapi.json get /organization/rag
openapi: 3.0.3
info:
  title: Fernand API Documentation
  version: '3.0'
  description: This is the documentation for the [Fernand](https://getfernand.com) API.
  termsOfService: https://getfernand.com/terms
  contact:
    name: Fernand Support
    url: https://getfernand.com
    email: support@getfernand.com
  x-logo:
    url: https://app.getfernand.com/images/favicon/icon_128.png
servers:
  - url: https://api.getfernand.com
    description: ''
    x-last-modified: 1764750693905
security:
  - apiKeyHeader: []
externalDocs:
  description: You can access our documentation online by visiting https://api.fernand.help
  url: https://api.fernand.help
paths:
  /organization/rag:
    get:
      tags:
        - RAG (AI data)
      summary: List all public AI sources
      description: >-
        Returns all public sources in our store used for AI. Limited to 250 most
        recent entries.
      operationId: listAISources
      responses:
        '200':
          description: RAG sources retrieved successfully.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/VectorStoreFile'
components:
  schemas:
    VectorStoreFile:
      type: object
      properties:
        id:
          type: integer
          format: int32
          description: Unique identifier for the vector store file
          example: 42
        name:
          type: string
          description: >-
            Display name for the file (filename if available, URL, or generated
            name based on source)
          example: documentation.pdf
        uuid:
          type: string
          maxLength: 40
          description: Unique identifier for tracking this file
          example: a1b2c3d4-e5f6-7890-abcd-ef1234567890
        url:
          type: string
          maxLength: 1000
          nullable: true
          description: Source URL for the file (if it was crawled from a web page)
          example: https://docs.piedpiper.com/guide
        source:
          type: string
          description: Type of source for this file
          enum:
            - URL
            - TEXT
            - QUESTION
            - MESSAGE
            - ARTICLE
          example: URL
        created:
          type: string
          format: date-time
          description: Timestamp when the file was added to the vector store (UTC)
          example: '2024-01-15T10:30:00Z'
        created_ts:
          type: integer
          format: int64
          description: Unix timestamp in milliseconds when the file was added
          example: 1705315800000
        last_updated:
          type: string
          format: date-time
          description: Timestamp when the file content was last modified (UTC)
          example: '2024-01-20T14:45:00Z'
        last_updated_ts:
          type: integer
          format: int64
          description: Unix timestamp in milliseconds when the file was last updated
          example: 1705759500000
        size:
          type: integer
          format: int32
          minimum: 0
          description: Size of the file in bytes
          example: 2048
      required:
        - id
        - name
        - uuid
        - source
        - created
        - created_ts
        - last_updated
        - last_updated_ts
        - size
      x-computed-hash: 1e7271267d91a10e125807540ba588d74f4fb99f69251bda216cd81d7ab822a6
      x-last-modified: 1769075324
  securitySchemes:
    apiKeyHeader:
      type: apiKey
      description: >-
        Authenticate your account by including your secret key in API requests.

        You can manage your API keys in the
        [Dashboard](https://app.getfernand.com/).


        Authentication to the API is performed by using the HTTP Header
        X-API-Key.
      name: X-API-Key
      in: header
      x-last-modified: 1764750344730

````