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

# List sources in a collection

> Returns sources for a given collection. Visibility-scoped.



## OpenAPI

````yaml /openapi.yaml get /shared-knowledge/sources
openapi: 3.0.3
info:
  title: Hill90 API
  description: Hill90 platform API — agent management and lifecycle operations.
  version: 0.1.0
servers:
  - url: /
    description: Relative (behind Traefik reverse proxy)
security: []
paths:
  /shared-knowledge/sources:
    get:
      summary: List sources in a collection
      description: Returns sources for a given collection. Visibility-scoped.
      parameters:
        - name: collection_id
          in: query
          required: true
          schema:
            type: string
            format: uuid
          description: Collection ID to list sources from
      responses:
        '200':
          description: Source list
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SharedSource'
        '400':
          description: Missing collection_id
        '401':
          description: Not authenticated
        '404':
          description: Collection not found
      security:
        - bearerAuth: []
components:
  schemas:
    SharedSource:
      type: object
      properties:
        id:
          type: string
          format: uuid
        collection_id:
          type: string
          format: uuid
        title:
          type: string
        source_type:
          type: string
          enum:
            - text
            - markdown
            - web_page
        source_url:
          type: string
          nullable: true
        content_hash:
          type: string
        status:
          type: string
          enum:
            - pending
            - active
            - error
            - archived
        error_message:
          type: string
          nullable: true
        created_by:
          type: string
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````