Skip to main content
GET
/
v1
/
chart
/
quotes
Python (SDK)
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)
{
  "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
      }
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://finance.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

symbols
string
required

Comma-separated list of stock symbols to get quotes for

Response

Quotes retrieved successfully

s
enum<string>

Status of the response

Available options:
ok,
error
d
object[]

Array of quote data for requested symbols