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

# Team chemistry reflection



## OpenAPI

````yaml /openapi.public.json post /v1/cultural-intelligence/orgs/{org_id}/teams/{team_id}/chemistry-reflection
openapi: 3.1.0
info:
  title: AstroM8 Public API
  version: 1.1.0
  description: >-
    Astrology calculations, reports, customer delivery, and enterprise
    workflows. Each operation declares whether it uses an API key or a customer
    session bearer token.
servers:
  - url: https://api.astrom8.com
    description: Production
security: []
tags:
  - name: Western
    description: Natal, relationship, return, progression, and transit calculations.
  - name: Vedic
    description: Lahiri sidereal Vedic calculations, matching, timing, and remedies.
  - name: Thai Astrology
    description: Thai calendar, auspicious timing, lunar, festival, and wheel tools.
  - name: Chinese & Korean
    description: BaZi, Qi Men Dun Jia, and Saju calculations.
  - name: Horoscopes
    description: Published daily and range horoscope content.
  - name: Reports
    description: Branded report generation and asynchronous job polling.
  - name: Tarot & Numerology
    description: Tarot spreads and Pythagorean numerology.
  - name: Uranian
    description: Uranian charts, midpoints, and planetary pictures.
  - name: Developer workflow
    description: Preflight capability eligibility and credit estimates.
  - name: Customer reports
    description: Session-authenticated report jobs and reusable brand profiles.
  - name: Customer delivery
    description: Session-authenticated webhooks and scheduled horoscope delivery.
  - name: Cultural Intelligence
    description: >-
      Enterprise API-key workflows for encrypted profiles, teams, and campaign
      content.
paths:
  /v1/cultural-intelligence/orgs/{org_id}/teams/{team_id}/chemistry-reflection:
    post:
      tags:
        - Cultural Intelligence
      summary: Team chemistry reflection
      parameters:
        - $ref: '#/components/parameters/CulturalOrgId'
        - $ref: '#/components/parameters/CulturalTeamId'
      responses:
        '200':
          description: Team conversation payload.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CulturalTeamReflection'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
      security:
        - ApiKeyAuth: []
components:
  parameters:
    CulturalOrgId:
      name: org_id
      in: path
      required: true
      schema:
        type: string
    CulturalTeamId:
      name: team_id
      in: path
      required: true
      schema:
        type: string
  schemas:
    CulturalTeamReflection:
      type: object
      required:
        - org_id
        - team_id
        - element_balance
        - content
        - guardrails
        - meta
      properties:
        org_id:
          type: string
        team_id:
          type: string
        element_balance:
          type: object
          additionalProperties:
            type: integer
        content:
          type: object
        guardrails:
          $ref: '#/components/schemas/CulturalGuardrails'
        meta:
          $ref: '#/components/schemas/CulturalMeta'
    CulturalGuardrails:
      type: object
      required:
        - allowed_use
        - prohibited_use_notice
      properties:
        allowed_use:
          type: string
        prohibited_use_notice:
          type: string
    CulturalMeta:
      type: object
      required:
        - engine
        - endpoint_family
        - units_charged
        - generated_at
      properties:
        engine:
          type: string
        endpoint_family:
          type: string
        units_charged:
          type: integer
        generated_at:
          type: string
          format: date-time
    JsonError:
      type: object
      required:
        - error
        - message
      properties:
        error:
          type: string
          description: >-
            Stable slug (e.g. unauthorized, payment_required,
            internal_server_error).
        message:
          type: string
          description: Human-readable message safe for clients.
        code:
          type: string
          description: Optional provider-specific code.
        request_id:
          type: string
          description: Correlation id when middleware sets it.
  responses:
    Unauthorized:
      description: Missing or invalid API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/JsonError'
          example:
            error: unauthorized
            message: Invalid API key
            code: '401'
            request_id: 01HQXYZ...
    NotFound:
      description: Resource not available
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/JsonError'
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: bearer
      description: Use the raw API key as the Bearer token, or send X-API-Key instead.

````