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

# Re-run a stored analysis on its existing sources

> Re-run a stored analysis against its existing sources, producing a fresh analysis result and dashboard spec.



## OpenAPI

````yaml https://api.foreverbetter.xyz/openapi.json post /analyses/{id}/rerun
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}/rerun:
    post:
      summary: Re-run a stored analysis on its existing sources
      description: >-
        Re-run a stored analysis against its existing sources, producing a fresh
        analysis result and dashboard spec.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              additionalProperties: false
              properties: {}
      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

````