> ## 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 top featured contracts across all symbols

> Read pre-materialized featured contracts from ClickHouse snapshot.



## OpenAPI

````yaml /api/openapi.json get /api/graph/v1/options/featured-contracts
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/graph/v1/options/featured-contracts:
    get:
      tags:
        - Featured Contracts
      summary: Get top featured contracts across all symbols
      description: Read pre-materialized featured contracts from ClickHouse snapshot.
      operationId: get_cross_symbol_featured_api_graph_v1_options_featured_contracts_get
      parameters:
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 50
            minimum: 1
            description: Max contracts to return
            default: 10
            title: Limit
          description: Max contracts to return
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FeaturedContractsResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    FeaturedContractsResponse:
      properties:
        contracts:
          items:
            $ref: '#/components/schemas/FeaturedContract'
          type: array
          title: Contracts
        computed_at:
          type: string
          title: Computed At
        regime:
          type: string
          title: Regime
        score_basis:
          type: string
          enum:
            - gated
            - ungated
            - snapshot
            - error
          title: Score Basis
          default: gated
      type: object
      required:
        - computed_at
        - regime
      title: FeaturedContractsResponse
      description: Response from featured contracts endpoints.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    FeaturedContract:
      properties:
        symbol:
          type: string
          title: Symbol
        contract_symbol:
          type: string
          title: Contract Symbol
        option_type:
          type: string
          title: Option Type
        strike:
          type: number
          title: Strike
        expiration:
          type: string
          title: Expiration
        dte:
          type: integer
          title: Dte
        delta:
          anyOf:
            - type: number
            - type: 'null'
          title: Delta
        mid:
          anyOf:
            - type: number
            - type: 'null'
          title: Mid
        spread_pct:
          anyOf:
            - type: number
            - type: 'null'
          title: Spread Pct
        open_interest:
          anyOf:
            - type: integer
            - type: 'null'
          title: Open Interest
        featured_score:
          type: number
          title: Featured Score
        conviction_score:
          type: number
          title: Conviction Score
        options_confluence:
          type: number
          title: Options Confluence
        dte_composite:
          type: number
          title: Dte Composite
        confidence:
          type: string
          title: Confidence
        direction:
          type: string
          title: Direction
        score_basis:
          type: string
          enum:
            - gated
            - ungated
            - snapshot
            - error
          title: Score Basis
          default: gated
      type: object
      required:
        - symbol
        - contract_symbol
        - option_type
        - strike
        - expiration
        - dte
        - featured_score
        - conviction_score
        - options_confluence
        - dte_composite
        - confidence
        - direction
      title: FeaturedContract
      description: A single featured contract with ranking scores.
    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

````