Skip to main content
GET
/
v1
/
chart
/
symbols
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_symbol_info(symbol="AAPL")

    # Handle response
    print(res)
{
  "ticker": "AAPL",
  "name": "AAPL",
  "description": "Apple Inc.",
  "type": "stock",
  "session": "0930-1600",
  "timezone": "America/New_York",
  "exchange": "NASDAQ",
  "format": "price",
  "minmov": 1,
  "pricescale": 100,
  "has_intraday": true,
  "intraday_multipliers": [
    "1",
    "5",
    "15",
    "30",
    "60"
  ],
  "has_seconds": true,
  "visible_plots_set": "ohlcv",
  "has_weekly_and_monthly": true,
  "supported_resolutions": [
    "1",
    "5",
    "15",
    "30",
    "60",
    "1D",
    "1W",
    "1M"
  ],
  "volume_precision": 0,
  "listed_exchange": "NASDAQ"
}

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

symbol
string
required

The stock symbol to get information for (e.g., 'AAPL', 'GOOGL')

Response

Symbol information retrieved successfully

ticker
string

Symbol ticker

name
string

Symbol name

description
string

Full description of the symbol/company

type
string

Instrument type (stock, etf, index, etc.)

session
string

Trading session hours (e.g., '0930-1600')

timezone
string

Timezone of the exchange (e.g., 'America/New_York')

exchange
string

Exchange where the symbol is traded

format
string

Price format (usually 'price')

minmov
number

Minimum price movement

pricescale
integer

Price scale (e.g., 100 means divide price by 100)

has_intraday
boolean

Whether intraday data is available

intraday_multipliers
string[]

Available intraday time multipliers

has_seconds
boolean

Whether seconds resolution is available

visible_plots_set
string

Visible plots (e.g., 'ohlcv' for OHLC + Volume)

has_weekly_and_monthly
boolean

Whether weekly and monthly data is available

supported_resolutions
string[]

Resolutions supported for this symbol

volume_precision
number

Volume precision (decimal places)

listed_exchange
string

Primary exchange where the symbol is listed