> ## 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 today's intraday bars for charting

> Return today's 1-minute bars for intraday charting.



## OpenAPI

````yaml /api/openapi.json get /api/graph/v1/market/intraday-bars/{symbol}
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/market/intraday-bars/{symbol}:
    get:
      tags:
        - Market
      summary: Get today's intraday bars for charting
      description: Return today's 1-minute bars for intraday charting.
      operationId: get_intraday_bars_api_graph_v1_market_intraday_bars__symbol__get
      parameters:
        - name: symbol
          in: path
          required: true
          schema:
            type: string
            title: Symbol
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IntradayBarsResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    IntradayBarsResponse:
      properties:
        symbol:
          type: string
          title: Symbol
        bars:
          items:
            $ref: '#/components/schemas/IntradayBar'
          type: array
          title: Bars
        market_status:
          type: string
          title: Market Status
        current_phase:
          type: string
          title: Current Phase
        source:
          type: string
          title: Source
          default: realtime_sip
      type: object
      required:
        - symbol
        - bars
        - market_status
        - current_phase
      title: IntradayBarsResponse
      description: Today's intraday bars for charting.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    IntradayBar:
      properties:
        time:
          type: string
          title: Time
        open:
          type: number
          title: Open
        high:
          type: number
          title: High
        low:
          type: number
          title: Low
        close:
          type: number
          title: Close
        volume:
          type: integer
          title: Volume
      type: object
      required:
        - time
        - open
        - high
        - low
        - close
        - volume
      title: IntradayBar
      description: Single intraday OHLCV bar.
    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

````