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

# Get Acceptance Report

> Generate full acceptance report across all score families.



## OpenAPI

````yaml /api/openapi.json get /api/internal/acceptance/report
openapi: 3.1.0
info:
  title: Sequency Graph API
  description: >

    # Sequency Graph-Native Trading API


    Graph-native API for trading intelligence, built on FalkorDB.


    ## Features


    - **Screener**: Filter stocks using graph-native queries with relationship
    expansion

    - **Stock Detail**: Complete stock context with all relationships

    - **Confluence Scoring**: Setup quality assessment with weighted components

    - **Strategy Matching**: Find matching options strategies via graph
    traversal

    - **Market Context**: Current market-wide context for trading decisions


    ## Data Sources


    All data is sourced from the FalkorDB knowledge graph, populated by:

    - Pattern detector (Go) - Technical indicators, patterns

    - Graph sync service - Levels, volume profiles, news, day classification
  version: 1.0.0
servers: []
security: []
paths:
  /api/internal/acceptance/report:
    get:
      tags:
        - acceptance
      summary: Get Acceptance Report
      description: Generate full acceptance report across all score families.
      operationId: get_acceptance_report_api_internal_acceptance_report_get
      parameters:
        - name: start_date
          in: query
          required: true
          schema:
            type: string
            description: Start date (YYYY-MM-DD)
            title: Start Date
          description: Start date (YYYY-MM-DD)
        - name: end_date
          in: query
          required: true
          schema:
            type: string
            description: End date (YYYY-MM-DD)
            title: End Date
          description: End date (YYYY-MM-DD)
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AcceptanceReport'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    AcceptanceReport:
      properties:
        start_date:
          type: string
          title: Start Date
        end_date:
          type: string
          title: End Date
        total_snapshots:
          type: integer
          title: Total Snapshots
          default: 0
        score_quality:
          items:
            $ref: '#/components/schemas/ScoreQualityReport'
          type: array
          title: Score Quality
        directional:
          anyOf:
            - $ref: '#/components/schemas/DirectionalReport'
            - type: 'null'
        stability:
          anyOf:
            - $ref: '#/components/schemas/StabilityReport'
            - type: 'null'
        regime_concentration:
          anyOf:
            - $ref: '#/components/schemas/RegimeConcentrationReport'
            - type: 'null'
        gates:
          items:
            $ref: '#/components/schemas/GateResult'
          type: array
          title: Gates
        all_gates_passed:
          type: boolean
          title: All Gates Passed
          default: false
      type: object
      required:
        - start_date
        - end_date
      title: AcceptanceReport
      description: Full acceptance report across all score families.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ScoreQualityReport:
      properties:
        score_family:
          type: string
          title: Score Family
        spearman:
          items:
            $ref: '#/components/schemas/SpearmanResult'
          type: array
          title: Spearman
        tier_win_rates:
          items:
            $ref: '#/components/schemas/TierWinRate'
          type: array
          title: Tier Win Rates
        tier_monotonic:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Tier Monotonic
        sample_size:
          type: integer
          title: Sample Size
          default: 0
      type: object
      required:
        - score_family
      title: ScoreQualityReport
      description: Score quality analysis for a single score family.
    DirectionalReport:
      properties:
        bullish_spearman_5d:
          anyOf:
            - type: number
            - type: 'null'
          title: Bullish Spearman 5D
        bearish_spearman_5d:
          anyOf:
            - type: number
            - type: 'null'
          title: Bearish Spearman 5D
        bullish_excellent_win_rate:
          anyOf:
            - type: number
            - type: 'null'
          title: Bullish Excellent Win Rate
        bearish_excellent_win_rate:
          anyOf:
            - type: number
            - type: 'null'
          title: Bearish Excellent Win Rate
        bullish_sample_size:
          type: integer
          title: Bullish Sample Size
          default: 0
        bearish_sample_size:
          type: integer
          title: Bearish Sample Size
          default: 0
      type: object
      title: DirectionalReport
      description: Directional analysis for bullish vs bearish.
    StabilityReport:
      properties:
        tier_churn_pct:
          anyOf:
            - type: number
            - type: 'null'
          title: Tier Churn Pct
        percentile_drift_p90:
          anyOf:
            - type: number
            - type: 'null'
          title: Percentile Drift P90
        clean_cohort_size:
          type: integer
          title: Clean Cohort Size
          default: 0
        event_excluded_count:
          type: integer
          title: Event Excluded Count
          default: 0
      type: object
      title: StabilityReport
      description: Tier stability and churn analysis.
    RegimeConcentrationReport:
      properties:
        regimes:
          items:
            $ref: '#/components/schemas/RegimeConcentrationEntry'
          type: array
          title: Regimes
        any_breach:
          type: boolean
          title: Any Breach
          default: false
        max_concentration_ratio:
          type: number
          title: Max Concentration Ratio
          default: 0
      type: object
      title: RegimeConcentrationReport
      description: Regime concentration analysis.
    GateResult:
      properties:
        gate_name:
          type: string
          title: Gate Name
        target:
          type: number
          title: Target
        actual:
          anyOf:
            - type: number
            - type: 'null'
          title: Actual
        passed:
          type: boolean
          title: Passed
          default: false
        description:
          type: string
          title: Description
          default: ''
      type: object
      required:
        - gate_name
        - target
      title: GateResult
      description: Result of a single acceptance gate check.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    SpearmanResult:
      properties:
        score_family:
          type: string
          title: Score Family
        horizon:
          type: string
          title: Horizon
        overall:
          anyOf:
            - type: number
            - type: 'null'
          title: Overall
        bullish_only:
          anyOf:
            - type: number
            - type: 'null'
          title: Bullish Only
        bearish_only:
          anyOf:
            - type: number
            - type: 'null'
          title: Bearish Only
        p_value_overall:
          anyOf:
            - type: number
            - type: 'null'
          title: P Value Overall
        p_value_bullish:
          anyOf:
            - type: number
            - type: 'null'
          title: P Value Bullish
        p_value_bearish:
          anyOf:
            - type: number
            - type: 'null'
          title: P Value Bearish
        sample_size:
          type: integer
          title: Sample Size
          default: 0
      type: object
      required:
        - score_family
        - horizon
      title: SpearmanResult
      description: Spearman rank correlation result for a score family x horizon.
    TierWinRate:
      properties:
        tier:
          type: string
          title: Tier
        win_rate:
          anyOf:
            - type: number
            - type: 'null'
          title: Win Rate
        sample_size:
          type: integer
          title: Sample Size
          default: 0
        avg_return:
          anyOf:
            - type: number
            - type: 'null'
          title: Avg Return
      type: object
      required:
        - tier
      title: TierWinRate
      description: Win rate for a specific score tier.
    RegimeConcentrationEntry:
      properties:
        regime:
          type: string
          title: Regime
        excellent_share:
          type: number
          title: Excellent Share
        universe_share:
          type: number
          title: Universe Share
        concentration_ratio:
          type: number
          title: Concentration Ratio
        breach:
          type: boolean
          title: Breach
          default: false
      type: object
      required:
        - regime
        - excellent_share
        - universe_share
        - concentration_ratio
      title: RegimeConcentrationEntry
      description: Concentration ratio for a single regime.

````