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

# List uploaded sources for a user

> List uploaded source documents for the authenticated user with optional category, since, and limit filters.



## OpenAPI

````yaml https://api.foreverbetter.xyz/openapi.json get /sources
openapi: 3.1.0
info:
  title: ForeverBetter API
  version: 0.4.8
  description: >-
    ForeverBetter API and MCP-compatible service for genetics, biomarkers,
    wearables, lab locator handoffs, and dashboard specs.
servers:
  - url: https://api.foreverbetter.xyz
security:
  - bearerAuth: []
paths:
  /sources:
    get:
      summary: List uploaded sources for a user
      description: >-
        List uploaded source documents for the authenticated user with optional
        category, since, and limit filters.
      parameters:
        - name: user_id
          in: query
          required: false
          schema:
            type: string
          description: User whose sources to list (defaults to the token subject).
        - name: organization_id
          in: query
          required: false
          schema:
            type: string
          description: Restrict to a single organization.
        - name: category
          in: query
          required: false
          schema:
            type: string
          description: 'Filter by category: biomarkers, wearables, genetics, behavioral.'
        - name: since
          in: query
          required: false
          schema:
            type: string
          description: ISO timestamp lower bound on received_at.
        - name: limit
          in: query
          required: false
          schema:
            type: string
          description: Max results (1-200, default 50).
      responses:
        '200':
          description: OK
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````