Skip to main content
GET
/
api
/
market-data
/
quote
/
depth
Get market depth
curl --request GET \
  --url https://openapi.fcontext.com/api/market-data/quote/depth \
  --header 'x-api-key: <api-key>'
{
  "depth": {
    "asks": [
      {
        "position": 123,
        "price": "<string>",
        "volume": "<string>",
        "orderNum": 123
      }
    ],
    "bids": [
      {
        "position": 123,
        "price": "<string>",
        "volume": "<string>",
        "orderNum": 123
      }
    ]
  }
}

Authorizations

x-api-key
string
header
required

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

Query Parameters

symbol
string
required

Security symbol.

Response

Market depth (bid and ask levels)

depth
object

Market depth (bid and ask levels).