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

# Get a design system with tokens + DESIGN.md

> Get a design system's full tokens (color, typography, spacing, radii, elevation, motion, components) plus a ready-to-paste DESIGN.md. Public reference data.



## OpenAPI

````yaml /openapi.json get /design/systems/{id}
openapi: 3.1.0
info:
  title: ForeverBetter Wellness API
  version: 0.4.8
  description: >-
    ForeverBetter Wellness API and MCP-compatible service for genetics,
    biomarkers, wearables, lab locator handoffs, dashboard specs, and hosted
    billing.
  x-guidance: >-
    Use /openapi.json to discover the API. For a payable operation, make the
    exact request without credentials, select a compatible option from
    PAYMENT-REQUIRED, then retry unchanged with PAYMENT-SIGNATURE. x402 payments
    create a payer-scoped private workspace; do not send user_id or
    organization_id. Use GET /.well-known/x402.json for the live route and price
    catalog.
servers:
  - url: https://api.foreverbetter.xyz
security:
  - bearerAuth: []
paths:
  /design/systems/{id}:
    get:
      summary: Get a design system with tokens + DESIGN.md
      description: >-
        Get a design system's full tokens (color, typography, spacing, radii,
        elevation, motion, components) plus a ready-to-paste DESIGN.md. Public
        reference data.
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JsonObject'
        '401':
          description: Unauthorized
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '403':
          description: Forbidden
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
      security: []
components:
  schemas:
    JsonObject:
      type: object
      additionalProperties: true
    ProblemDetails:
      type: object
      additionalProperties: true
      required:
        - type
        - title
        - status
        - detail
      properties:
        type:
          type: string
        title:
          type: string
        status:
          type: integer
        detail:
          type: string
        instance:
          type: string
        request_id:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````