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

# Build a customized action plan (interventions + evidence-graded supplement stack) for an analysis

> Build a customized action plan (lifestyle interventions + an evidence-graded supplement stack) mapped from a stored analysis, cross-referenced against the user's logged supplements and medications.



## OpenAPI

````yaml https://api.foreverbetter.xyz/openapi.json get /analyses/{id}/action-plan
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:
  /analyses/{id}/action-plan:
    get:
      summary: >-
        Build a customized action plan (interventions + evidence-graded
        supplement stack) for an analysis
      description: >-
        Build a customized action plan (lifestyle interventions + an
        evidence-graded supplement stack) mapped from a stored analysis,
        cross-referenced against the user's logged supplements and medications.
      responses:
        '200':
          description: OK
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````