> ## 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 all variants for an experiment

> Get all variants for a specific experiment.



## OpenAPI

````yaml /api/openapi.json get /api/uat/v1/experiments/{experiment_id}/variants
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/uat/v1/experiments/{experiment_id}/variants:
    get:
      tags:
        - UAT Testing
      summary: Get all variants for an experiment
      description: Get all variants for a specific experiment.
      operationId: >-
        get_experiment_variants_api_uat_v1_experiments__experiment_id__variants_get
      parameters:
        - name: experiment_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Experiment Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/UATVariant'
                title: >-
                  Response Get Experiment Variants Api Uat V1 Experiments 
                  Experiment Id  Variants Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    UATVariant:
      properties:
        experiment_id:
          type: string
          format: uuid
          title: Experiment Id
        variant_label:
          type: string
          maxLength: 50
          minLength: 1
          title: Variant Label
        config_snapshot:
          $ref: '#/components/schemas/ExperimentConfig'
        traffic_pct:
          type: string
          pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
          title: Traffic Pct
          description: Percentage of traffic assigned to this variant
          default: '50.0'
        is_control:
          type: boolean
          title: Is Control
          default: false
        variant_id:
          type: string
          format: uuid
          title: Variant Id
        created_at:
          type: string
          format: date-time
          title: Created At
      type: object
      required:
        - experiment_id
        - variant_label
        - config_snapshot
        - variant_id
        - created_at
      title: UATVariant
      description: Full variant model with server-generated fields.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ExperimentConfig:
      properties:
        version:
          type: string
          title: Version
          description: Rule version (e.g., 'v3.1.2')
        filters:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Filters
          description: Screener filters
        scoring:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Scoring
          description: Scoring configuration
        symbols:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Symbols
          description: Symbol filter for variant assignment
      type: object
      required:
        - version
      title: ExperimentConfig
      description: Configuration snapshot for experiment baseline or variant.
    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

````