> ## 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.

# Get AI data source content

Retrieves the stored content of a Question or Text source. For Questions, returns parsed questions array and answer. For Texts, returns the raw text content. Other source types cannot be retrieved through this endpoint.


## OpenAPI

````yaml https://api.getfernand.com/openapi.json get /organization/rag/sources/{uuid}/content
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/sources/{uuid}/content:
    get:
      tags:
        - RAG (AI data)
      summary: Get AI data source content
      description: >-
        Retrieves the stored content of a Question or Text source. For
        Questions, returns parsed questions array and answer. For Texts, returns
        the raw text content. Other source types cannot be retrieved through
        this endpoint.
      operationId: getAISourceContent
      parameters:
        - name: uuid
          in: path
          required: true
          schema:
            type: string
          description: UUID of the source to retrieve.
          example: a1b2c3d4e5f6g7h8i9j0
      responses:
        '200':
          description: Source content retrieved successfully.
          content:
            application/json:
              schema:
                oneOf:
                  - type: object
                    description: Question source content.
                    properties:
                      questions:
                        type: array
                        items:
                          type: string
                        example:
                          - How do I reset my password?
                          - What's the password recovery process?
                      answer:
                        type: string
                        example: To reset your password, click on...
                  - type: object
                    description: Text source content.
                    properties:
                      text:
                        type: string
                        example: This is the stored text content...
        '400':
          description: Source type does not support content retrieval.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: You can only retrieve the content of Questions or Texts
        '404':
          description: Source not found.
components:
  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

````