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

# List sources for the authenticated organization.



## OpenAPI

````yaml /openapi/v1.yaml get /v1/sources
openapi: 3.1.0
info:
  title: ConchAI B2B API (v1)
  version: 1.0.0
  description: |
    OpenAPI contract for the latest business-facing endpoints under /v1.
servers:
  - url: https://api.getconch.ai
    description: Production
security:
  - ApiKeyAuth: []
tags:
  - name: Organization
  - name: Sources
  - name: Flashcards
  - name: Mindmaps
  - name: Quizzes
paths:
  /v1/sources:
    get:
      tags:
        - Sources
      summary: List sources for the authenticated organization.
      operationId: listSources
      responses:
        '200':
          description: Sources fetched successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SourceListResponse'
        '401':
          $ref: '#/components/responses/UnauthorizedResponse'
        '500':
          $ref: '#/components/responses/InternalServerErrorResponse'
components:
  schemas:
    SourceListResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/SourceListItem'
      required:
        - data
    SourceListItem:
      type: object
      properties:
        _id:
          type: string
        sourceType:
          $ref: '#/components/schemas/SourceType'
        metadata:
          type: object
          additionalProperties: true
        title:
          type: string
        status:
          type: string
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
      required:
        - _id
        - sourceType
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
      required:
        - error
    SourceType:
      type: string
      enum:
        - file
        - youtube
        - webpage
        - lectureAudio
        - lectureVideo
  responses:
    UnauthorizedResponse:
      description: Missing or invalid authentication credentials.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    InternalServerErrorResponse:
      description: Internal server error.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Business API key issued per organization.

````