Skip to main content
HEAD
/
api
/
market-data
/
quote
/
{symbol}
/
candlestick
Get candlestick data headers
curl --request HEAD \
  --url https://openapi.fcontext.com/api/market-data/quote/{symbol}/candlestick \
  --header 'x-api-key: <api-key>'
{
  "error": "<string>"
}

Authorizations

x-api-key
string
header
required

Financial Context key generated from account settings. Send it as x-api-key: <key>.

Path Parameters

symbol
string
required

Security symbol, for example AAPL.US.

Query Parameters

period
string
default:day

Candlestick period, default day. Supports 1m, 5m, 15m, 30m, 1h, day, week, month, and year; SDK numeric enums are also accepted.

count
integer
default:100

Number of candlesticks to return, default 100.

Required range: x >= 1
adjust
string

Adjustment type: none for no adjustment (default), forward for forward-adjusted data; adjust_type=0|1 is also accepted.

adjust_type
enum<integer>

Compatibility alias for adjust; supports SDK numeric enums: 0 for no adjustment and 1 for forward-adjusted data.

Available options:
0,
1
session
string

Trading session: intraday for the regular session (default), all for all sessions; trade_sessions=0|1 is also accepted.

trade_sessions
enum<integer>

Compatibility alias for session; supports SDK numeric enums: 0 for regular session and 1 for all sessions.

Available options:
0,
1

Response

Market-data response headers.