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

# Analyze biomarker results

> Interpret direct and derived biomarker results from existing uploaded lab sources.



## OpenAPI

````yaml https://api.foreverbetter.xyz/openapi.json post /biomarkers/analyze
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:
  /biomarkers/analyze:
    post:
      summary: Analyze biomarker results
      description: >-
        Interpret direct and derived biomarker results from existing uploaded
        lab sources.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              additionalProperties: false
              required:
                - user_id
                - source_ids
              properties:
                user_id:
                  type: string
                  minLength: 1
                organization_id:
                  type: string
                  minLength: 1
                source_ids:
                  type: array
                  minItems: 1
                  items:
                    type: string
                profile:
                  type: object
                  additionalProperties: false
                  properties:
                    age:
                      type: number
                    sex:
                      type: string
                      enum:
                        - male
                        - female
      responses:
        '201':
          description: Created
        '400':
          description: Invalid request or source modality
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Source not found
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````