> ## Documentation Index
> Fetch the complete documentation index at: https://finance.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Real-Time Quotes

> Retrieves real-time or delayed quote data for one or multiple symbols. Returns current market data including last price, bid/ask prices, volume, high/low prices, change, and percent change. This endpoint supports bulk requests by providing comma-separated symbols, making it efficient for fetching quotes for multiple instruments simultaneously.



## OpenAPI

````yaml https://spec.speakeasy.com/aries/aries/aries-trading-platform-api-with-code-samples get /v1/chart/quotes
openapi: 3.0.3
info:
  title: Aries Trading Platform API
  description: >-
    Complete API documentation for the Aries trading platform including user
    management, authentication, account management, order management, market
    data, and analytics
  contact:
    name: Aries Financial
    email: dev@aries.com
  version: 1.0.0
servers:
  - url: https://api.tradearies.dev
    description: Production server
security: []
tags:
  - name: Accounts
    description: Account management endpoints for positions, orders, and balances
  - name: Analytics
    description: >-
      Analytics endpoints for market data analysis including top gainers,
      losers, volume leaders, sector analysis, analyst ratings, market breadth,
      and net inflow
  - name: Authentication
    description: User authentication endpoints
  - name: Calendars
    description: Calendar endpoints for economic events and historical data
  - name: Market Data
    description: >-
      Market data endpoints for symbol search, real-time data access, and equity
      details
  - name: Orders
    description: >-
      Order management endpoints for placing, updating, canceling, and
      previewing orders
  - name: Users
    description: User management endpoints
  - name: Health
    description: Service health endpoints
paths:
  /v1/chart/quotes:
    get:
      tags:
        - Chart
      summary: Get Real-Time Quotes
      description: >-
        Retrieves real-time or delayed quote data for one or multiple symbols.
        Returns current market data including last price, bid/ask prices,
        volume, high/low prices, change, and percent change. This endpoint
        supports bulk requests by providing comma-separated symbols, making it
        efficient for fetching quotes for multiple instruments simultaneously.
      operationId: getQuotes
      parameters:
        - name: symbols
          in: query
          description: Comma-separated list of stock symbols to get quotes for
          required: true
          schema:
            type: string
          example: AAPL,GOOGL,MSFT
      responses:
        '200':
          description: Quotes retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QuotesResponse'
              example:
                s: ok
                d:
                  - s: AAPL
                    'n': NASDAQ
                    v:
                      ch: 2.15
                      chp: 1.67
                      short_name: Apple Inc.
                      exchange: NASDAQ
                      description: Apple Inc. Common Stock
                      lp: 130.89
                      ask: 130.92
                      bid: 130.88
                      open_price: 129.5
                      high_price: 131.25
                      low_price: 129.3
                      prev_close_price: 128.74
                      volume: 45678900
                  - s: GOOGL
                    'n': NASDAQ
                    v:
                      ch: -1.25
                      chp: -0.95
                      short_name: Alphabet Inc.
                      exchange: NASDAQ
                      description: Alphabet Inc. Class A Common Stock
                      lp: 130.5
                      ask: 130.55
                      bid: 130.48
                      open_price: 131.2
                      high_price: 131.8
                      low_price: 130.1
                      prev_close_price: 131.75
                      volume: 23456789
        '400':
          description: Bad request - symbols parameter is required
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error: symbols parameter is required
        '401':
          description: Unauthorized - invalid authentication
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - BearerAuth: []
      x-codeSamples:
        - lang: python
          label: Python (SDK)
          source: |-
            from finance_dev import FinanceDev, models
            import os


            with FinanceDev(
                security=models.Security(
                    client_id=os.getenv("FINANCEDEV_CLIENT_ID", ""),
                    client_secret=os.getenv("FINANCEDEV_CLIENT_SECRET", ""),
                ),
            ) as fd_client:

                res = fd_client.chart.get_quotes(symbols="AAPL,GOOGL,MSFT")

                # Handle response
                print(res)
        - lang: java
          label: Java (SDK)
          source: |-
            package hello.world;

            import java.lang.Exception;
            import org.openapis.openapi.AriesJava;
            import org.openapis.openapi.models.errors.ErrorResponse;
            import org.openapis.openapi.models.operations.GetQuotesResponse;

            public class Application {

                public static void main(String[] args) throws ErrorResponse, Exception {

                    AriesJava sdk = AriesJava.builder()
                            .bearerAuth(System.getenv().getOrDefault("BEARER_AUTH", ""))
                        .build();

                    GetQuotesResponse res = sdk.chart().getQuotes()
                            .symbols("AAPL,GOOGL,MSFT")
                            .call();

                    if (res.quotesResponse().isPresent()) {
                        // handle response
                    }
                }
            }
components:
  schemas:
    QuotesResponse:
      type: object
      properties:
        s:
          type: string
          enum:
            - ok
            - error
          description: Status of the response
        d:
          type: array
          items:
            $ref: '#/components/schemas/QuoteData'
          description: Array of quote data for requested symbols
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
          description: Error message
        codes:
          type: array
          items:
            type: object
            properties:
              code:
                type: string
                description: Error code
              description:
                type: string
                description: Error description
    QuoteData:
      type: object
      properties:
        s:
          type: string
          description: Symbol ticker
        'n':
          type: string
          description: Exchange name
        v:
          $ref: '#/components/schemas/QuoteValues'
    QuoteValues:
      type: object
      properties:
        ch:
          type: number
          description: Price change from previous close
        chp:
          type: number
          description: Percent change from previous close
        short_name:
          type: string
          description: Short name of the company
        exchange:
          type: string
          description: Exchange code
        description:
          type: string
          description: Full description
        lp:
          type: number
          description: Last price
        ask:
          type: number
          description: Ask price
        bid:
          type: number
          description: Bid price
        open_price:
          type: number
          description: Opening price for the day
        high_price:
          type: number
          description: Highest price for the day
        low_price:
          type: number
          description: Lowest price for the day
        prev_close_price:
          type: number
          description: Previous day's closing price
        volume:
          type: number
          description: Trading volume
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````