> ## 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 Signal Funnel

> Signal funnel with conversion rate and leak rate changes.



## OpenAPI

````yaml /api/openapi.json get /api/internal/acceptance/signals/funnel
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/signals/funnel:
    get:
      tags:
        - acceptance-signals
      summary: Get Signal Funnel
      description: Signal funnel with conversion rate and leak rate changes.
      operationId: get_signal_funnel_api_internal_acceptance_signals_funnel_get
      parameters:
        - name: start_date
          in: query
          required: true
          schema:
            type: string
            format: date
            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
            format: date
            description: End date (YYYY-MM-DD)
            title: End Date
          description: End date (YYYY-MM-DD)
        - name: regime
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by regime
            title: Regime
          description: Filter by regime
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SignalFunnelReport'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SignalFunnelReport:
      properties:
        total_signals:
          type: integer
          title: Total Signals
        funnel:
          items:
            $ref: '#/components/schemas/FunnelEntry'
          type: array
          title: Funnel
        conversion_rate:
          type: number
          title: Conversion Rate
      type: object
      required:
        - total_signals
        - funnel
        - conversion_rate
      title: SignalFunnelReport
      description: Signal funnel with conversion rate and leak rate changes.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    FunnelEntry:
      properties:
        status:
          type: string
          title: Status
        count:
          type: integer
          title: Count
        pct:
          type: number
          title: Pct
        trailing_14d_pct:
          anyOf:
            - type: number
            - type: 'null'
          title: Trailing 14D Pct
        leak_rate_change:
          anyOf:
            - type: number
            - type: 'null'
          title: Leak Rate Change
      type: object
      required:
        - status
        - count
        - pct
        - trailing_14d_pct
        - leak_rate_change
      title: FunnelEntry
      description: Single stage in the signal funnel.
    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

````