> ## 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 Intraday Profile

> Get intraday profile for the current user.



## OpenAPI

````yaml /api/openapi.json get /api/graph/v1/user/intraday-profile/
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/user/intraday-profile/:
    get:
      tags:
        - Intraday Profile
      summary: Get Intraday Profile
      description: Get intraday profile for the current user.
      operationId: get_intraday_profile_api_graph_v1_user_intraday_profile__get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IntradayProfileResponse'
components:
  schemas:
    IntradayProfileResponse:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        user_id:
          type: string
          format: uuid
          title: User Id
        account_tier:
          type: string
          title: Account Tier
        default_mode:
          type: string
          title: Default Mode
        max_daily_loss:
          type: number
          title: Max Daily Loss
        max_portfolio_positions:
          type: integer
          title: Max Portfolio Positions
        per_trade_risk:
          type: number
          title: Per Trade Risk
        symbols_config:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Symbols Config
        session_prefs:
          additionalProperties: true
          type: object
          title: Session Prefs
        notifications:
          additionalProperties: true
          type: object
          title: Notifications
        enabled_signal_types:
          items:
            type: string
          type: array
          title: Enabled Signal Types
        supervised_trade_count:
          type: integer
          title: Supervised Trade Count
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
      type: object
      required:
        - id
        - user_id
        - account_tier
        - default_mode
        - max_daily_loss
        - max_portfolio_positions
        - per_trade_risk
        - symbols_config
        - session_prefs
        - notifications
        - enabled_signal_types
        - supervised_trade_count
        - created_at
        - updated_at
      title: IntradayProfileResponse
      description: Full intraday profile response.

````