Skip to main content
GET
/
api
/
market-data
/
quote
Get realtime quotes
curl --request GET \
  --url https://openapi.fcontext.com/api/market-data/quote \
  --header 'x-api-key: <api-key>'
{
  "quote": [
    {
      "symbol": "AAPL.US",
      "lastDone": "<string>",
      "prevClose": "<string>",
      "open": "<string>",
      "high": "<string>",
      "low": "<string>",
      "timestamp": "2023-11-07T05:31:56Z",
      "volume": "<string>",
      "turnover": "<string>",
      "tradeStatus": 123
    }
  ]
}

Authorizations

x-api-key
string
header
required

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

Query Parameters

symbols
string
required

Comma-separated security symbols, for example AAPL.US,MSFT.US.

Response

Realtime quotes

quote
object[]